forked from pool/mingw64-runtime
mingw-w64 12.0.0
(Synchronize with mingw32-runtime)
This commit is contained in:
parent
bb192cdd21
commit
6cf5623eb8
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3f66bce069ee8bed7439a1a13da7cb91a5e67ea6170f21317ac7f5794625ee10
|
|
||||||
size 10057401
|
|
BIN
mingw-w64-v12.0.0.tar.bz2
(Stored with Git LFS)
Normal file
BIN
mingw-w64-v12.0.0.tar.bz2
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 28 10:45:16 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 12
|
||||||
|
* C++ overloads for _strdate_s and _strtime_s, _makepath_s,
|
||||||
|
wcsncat_s.
|
||||||
|
* Updated wine header imports.
|
||||||
|
* Many other new win32 APIs.
|
||||||
|
* UCRT configurations now primarily use (faster) math functions
|
||||||
|
from UCRT, rather than libmingwex.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 3 12:33:16 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
Fri Nov 3 12:33:16 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
@ -14,6 +25,11 @@ Mon Jun 27 16:37:24 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
|
|||||||
* Drop x86_64 64-bit crtdll.dll
|
* Drop x86_64 64-bit crtdll.dll
|
||||||
* Updated wine imports
|
* Updated wine imports
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 21 08:39:19 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Silence rpmlint2: devel-file-in-non-devel-package
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Jul 3 10:32:06 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
|
Sat Jul 3 10:32:06 UTC 2021 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package mingw64-runtime
|
# spec file for package mingw64-runtime
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,25 +17,25 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: mingw64-runtime
|
Name: mingw64-runtime
|
||||||
Version: 11.0.1
|
Version: 12.0.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: MinGW-w64 runtime libraries for Win64
|
Summary: MinGW-w64 runtime libraries for Win64
|
||||||
License: SUSE-Public-Domain
|
License: SUSE-Public-Domain
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
URL: http://mingw-w64.sf.net/
|
URL: http://mingw-w64.sf.net/
|
||||||
Source: http://downloads.sf.net/mingw-w64/mingw-w64-v%{version}.tar.bz2
|
Source: http://downloads.sf.net/mingw-w64/mingw-w64-v%version.tar.bz2
|
||||||
Source100: %{name}-rpmlintrc
|
Source100: %name-rpmlintrc
|
||||||
BuildRequires: mingw64-cross-binutils
|
BuildRequires: mingw64-cross-binutils
|
||||||
BuildRequires: mingw64-cross-gcc-bootstrap >= 4.4.0
|
BuildRequires: mingw64-cross-gcc-bootstrap >= 4.4.0
|
||||||
BuildRequires: mingw64-filesystem
|
BuildRequires: mingw64-filesystem
|
||||||
BuildRequires: mingw64-headers >= %{version}
|
BuildRequires: mingw64-headers >= %version
|
||||||
BuildRequires: xz
|
BuildRequires: xz
|
||||||
#!BuildIgnore: post-build-checks
|
#!BuildIgnore: post-build-checks
|
||||||
# When building the CRT, any newer (>=) headers should be ok, since the CRT
|
# When building the CRT, any newer (>=) headers should be ok, since the CRT
|
||||||
# won't make use of them. At runtime, ensure that headers are not too new (<=)
|
# won't make use of them. At runtime, ensure that headers are not too new (<=)
|
||||||
# because ominous link failures can result -- let OBS go into unresolvable
|
# because ominous link failures can result -- let OBS go into unresolvable
|
||||||
# state instead.
|
# state instead.
|
||||||
Requires: mingw64-headers <= %{version}
|
Requires: mingw64-headers <= %version
|
||||||
# Once this is installed, mingw64-bootstrap (binary bootstrapper) is no
|
# Once this is installed, mingw64-bootstrap (binary bootstrapper) is no
|
||||||
# longer needed.
|
# longer needed.
|
||||||
Obsoletes: mingw64-runtime-bootstrap
|
Obsoletes: mingw64-runtime-bootstrap
|
||||||
@ -46,17 +46,18 @@ BuildArch: noarch
|
|||||||
MinGW Win64 cross-compiler runtime, base libraries.
|
MinGW Win64 cross-compiler runtime, base libraries.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n mingw-w64-v%{version}/mingw-w64-crt
|
%autosetup -n mingw-w64-v%version/mingw-w64-crt
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{_mingw64_configure} --disable-lib32 --enable-lib64
|
%_mingw64_configure --disable-lib32 --enable-lib64 \
|
||||||
|
--with-default-msvcrt=msvcrt
|
||||||
%make_build
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
rm -Rfv "%{buildroot}/%{_mingw64_includedir}"/*.c
|
rm -Rfv "%buildroot/%_mingw64_includedir"/*.c
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_mingw64_libdir}/
|
%_mingw64_libdir/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user