Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
64
.gitignore
vendored
64
.gitignore
vendored
@ -1 +1,63 @@
|
||||
SOURCES/gcc-7.2.0.tar.xz
|
||||
gcc-4.5.1.tar.bz2
|
||||
/gcc-4.5.3.tar.bz2
|
||||
/gcc-4.6.1.tar.bz2
|
||||
/gcc-4.7.0-20120106.tar.bz2
|
||||
/gcc-4.7.0-20120126.tar.bz2
|
||||
/gcc-4.7.0-20120224.tar.bz2
|
||||
/gcc-4.7.0-20120322.tar.bz2
|
||||
/gcc-4.7.0.tar.bz2
|
||||
/gcc-4.7.1.tar.bz2
|
||||
/gcc-4.7.2.tar.bz2
|
||||
/gcc-4.8-20130120.tar.bz2
|
||||
/gcc-4.8-20130203.tar.bz2
|
||||
/gcc-4.8-20130310.tar.bz2
|
||||
/gcc-4.8.0.tar.bz2
|
||||
/gcc-4.8.1.tar.bz2
|
||||
/gcc-4.8.2.tar.bz2
|
||||
/gcc-4.9.0-RC-20140411.tar.bz2
|
||||
/gcc-4.9.0.tar.bz2
|
||||
/gcc-4.9.1.tar.bz2
|
||||
/gcc-4.9.2.tar.bz2
|
||||
/gcc-5-20150301.tar.bz2
|
||||
/gcc-5-20150322.tar.bz2
|
||||
/gcc-5-20150405.tar.bz2
|
||||
/gcc-5.1.0.tar.bz2
|
||||
/gcc-5.2.0.tar.bz2
|
||||
/gcc-5.3.0.tar.bz2
|
||||
/gcc-6-20160131.tar.bz2
|
||||
/gcc-6-20160320.tar.bz2
|
||||
/gcc-6.1.0.tar.bz2
|
||||
/gcc-6.2.0.tar.bz2
|
||||
/gcc-6.3.0.tar.bz2
|
||||
/gcc-7-20170212.tar.bz2
|
||||
/gcc-7.1.0.tar.bz2
|
||||
/gcc-7.2.0.tar.xz
|
||||
/gcc-8.1.0.tar.xz
|
||||
/gcc-8.2.0.tar.xz
|
||||
/gcc-8.3.0.tar.xz
|
||||
/gcc-9.1.1-20190503.tar.xz
|
||||
/gcc-9.2.1-20190827.tar.xz
|
||||
/gcc-10.1.1-20200618.tar.xz
|
||||
/gcc-10.2.1-20200723.tar.xz
|
||||
/gcc-10.3.1-20210422.tar.xz
|
||||
/gcc-11.1.1-20210428.tar.xz
|
||||
/gcc-11.1.1-20210623.tar.xz
|
||||
/gcc-11.2.1-20210728.tar.xz
|
||||
/gcc-11.2.1-20211019.tar.xz
|
||||
/gcc-12.0.1-20220308.tar.xz
|
||||
/gcc-12.0.1-20220413.tar.xz
|
||||
/gcc-12.1.1-20220507.tar.xz
|
||||
/gcc-12.1.1-20220628.tar.xz
|
||||
/gcc-12.2.1-20220819.tar.xz
|
||||
/gcc-12.2.1-20221121.tar.xz
|
||||
/gcc-13.0.1-20230304.tar.xz
|
||||
/gcc-13.0.1-20230324.tar.xz
|
||||
/gcc-13.1.1-20230426.tar.xz
|
||||
/gcc-13.2.1-20230728.tar.xz
|
||||
/gcc-14.0.1-20240127.tar.xz
|
||||
/gcc-14.1.1-20240508.tar.xz
|
||||
/gcc-14.1.1-20240607.tar.xz
|
||||
/gcc-14.1.1-20240701.tar.xz
|
||||
/gcc-14.2.1-20240801.tar.xz
|
||||
/gcc-15.0.1-20250204.tar.xz
|
||||
/gcc-15.1.1-20250521.tar.xz
|
||||
|
||||
@ -1 +0,0 @@
|
||||
08a88199ed94fdf4940d118ba3c07028245cd5b7 SOURCES/gcc-7.2.0.tar.xz
|
||||
40
0020-libgomp-Don-t-hard-code-MS-printf-attributes.patch
Normal file
40
0020-libgomp-Don-t-hard-code-MS-printf-attributes.patch
Normal file
@ -0,0 +1,40 @@
|
||||
diff -rupN --no-dereference gcc-15.1.1-20250521/libgomp/libgomp.h gcc-15.1.1-20250521-new/libgomp/libgomp.h
|
||||
--- gcc-15.1.1-20250521/libgomp/libgomp.h 2025-05-21 14:40:58.000000000 +0200
|
||||
+++ gcc-15.1.1-20250521-new/libgomp/libgomp.h 2025-05-25 00:04:52.273599776 +0200
|
||||
@@ -76,6 +76,13 @@
|
||||
# endif
|
||||
#endif
|
||||
|
||||
+#include <stdio.h>
|
||||
+#ifdef __MINGW_PRINTF_FORMAT
|
||||
+#define PRINTF_FORMAT __MINGW_PRINTF_FORMAT
|
||||
+#else
|
||||
+#define PRINTF_FORMAT printf
|
||||
+#endif
|
||||
+
|
||||
#ifdef HAVE_ATTRIBUTE_VISIBILITY
|
||||
# pragma GCC visibility push(hidden)
|
||||
#endif
|
||||
@@ -181,7 +188,7 @@ team_free (void *ptr)
|
||||
|
||||
extern void gomp_vdebug (int, const char *, va_list);
|
||||
extern void gomp_debug (int, const char *, ...)
|
||||
- __attribute__ ((format (printf, 2, 3)));
|
||||
+ __attribute__ ((format (PRINTF_FORMAT, 2, 3)));
|
||||
#define gomp_vdebug(KIND, FMT, VALIST) \
|
||||
do { \
|
||||
if (__builtin_expect (gomp_debug_var, 0)) \
|
||||
@@ -194,11 +201,11 @@ extern void gomp_debug (int, const char
|
||||
} while (0)
|
||||
extern void gomp_verror (const char *, va_list);
|
||||
extern void gomp_error (const char *, ...)
|
||||
- __attribute__ ((format (printf, 1, 2)));
|
||||
+ __attribute__ ((format (PRINTF_FORMAT, 1, 2)));
|
||||
extern void gomp_vfatal (const char *, va_list)
|
||||
__attribute__ ((noreturn));
|
||||
extern void gomp_fatal (const char *, ...)
|
||||
- __attribute__ ((noreturn, format (printf, 1, 2)));
|
||||
+ __attribute__ ((noreturn, format (PRINTF_FORMAT, 1, 2)));
|
||||
|
||||
struct gomp_task;
|
||||
struct gomp_taskgroup;
|
||||
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}
|
||||
File diff suppressed because it is too large
Load Diff
11
mingw-gcc_include-stdlib.patch
Normal file
11
mingw-gcc_include-stdlib.patch
Normal file
@ -0,0 +1,11 @@
|
||||
diff -rupN --no-dereference gcc-15.1.1-20250521/libgcc/config/i386/enable-execute-stack-mingw32.c gcc-15.1.1-20250521-new/libgcc/config/i386/enable-execute-stack-mingw32.c
|
||||
--- gcc-15.1.1-20250521/libgcc/config/i386/enable-execute-stack-mingw32.c 2025-05-21 14:40:58.000000000 +0200
|
||||
+++ gcc-15.1.1-20250521-new/libgcc/config/i386/enable-execute-stack-mingw32.c 2025-05-25 00:04:57.176477347 +0200
|
||||
@@ -25,6 +25,7 @@
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <stdlib.h>
|
||||
#include <windows.h>
|
||||
+#include <stdlib.h>
|
||||
|
||||
extern void __enable_execute_stack (void *);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user