Compare commits

...

No commits in common. "c8" and "c9s" have entirely different histories.
c8 ... c9s

7 changed files with 770 additions and 233 deletions

57
.gitignore vendored
View File

@ -1 +1,56 @@
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

View File

@ -1 +1 @@
08a88199ed94fdf4940d118ba3c07028245cd5b7 SOURCES/gcc-7.2.0.tar.xz
6dac6a62176b695f252d9ca5b0ee1d5e24569fbb gcc-13.2.1-20230728.tar.xz

View File

@ -0,0 +1,40 @@
diff -rupN --no-dereference gcc-13.0.1-20230304/libgomp/libgomp.h gcc-13.0.1-20230304-new/libgomp/libgomp.h
--- gcc-13.0.1-20230304/libgomp/libgomp.h 2023-03-04 19:40:58.000000000 +0100
+++ gcc-13.0.1-20230304-new/libgomp/libgomp.h 2023-03-10 08:38:15.289652064 +0100
@@ -69,6 +69,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
@@ -177,7 +184,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)) \
@@ -190,11 +197,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
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-9
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional}

30
mingw-gcc-config.patch Normal file
View File

@ -0,0 +1,30 @@
diff -rupN --no-dereference gcc-12.2.1-20220819/config/intdiv0.m4 gcc-12.2.1-20220819-new/config/intdiv0.m4
--- gcc-12.2.1-20220819/config/intdiv0.m4 2022-08-19 19:14:13.000000000 +0200
+++ gcc-12.2.1-20220819-new/config/intdiv0.m4 2022-08-30 09:35:05.239027520 +0200
@@ -31,10 +31,10 @@ sigfpe_handler (sig) int sig;
exit (sig != SIGFPE);
}
-int x = 1;
-int y = 0;
-int z;
-int nan;
+volatile int x = 1;
+volatile int y = 0;
+volatile int z;
+volatile int nan;
int main ()
{
diff -rupN --no-dereference gcc-12.2.1-20220819/libiberty/acinclude.m4 gcc-12.2.1-20220819-new/libiberty/acinclude.m4
--- gcc-12.2.1-20220819/libiberty/acinclude.m4 2022-08-19 19:14:13.000000000 +0200
+++ gcc-12.2.1-20220819-new/libiberty/acinclude.m4 2022-08-30 09:35:05.240027520 +0200
@@ -157,7 +157,7 @@ if test $ac_cv_os_cray = yes; then
fi
AC_CACHE_CHECK(stack direction for C alloca, ac_cv_c_stack_direction,
-[AC_TRY_RUN([find_stack_direction ()
+[AC_TRY_RUN([__attribute__ ((noclone,noinline)) find_stack_direction ()
{
static char *addr = 0;
auto char dummy;

File diff suppressed because it is too large Load Diff

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (gcc-13.2.1-20230728.tar.xz) = 7698968e1eabfe8ae8ff79806d9c15a50e861b2776ea5968e6b1f2ebf399d7b62cc4066d7d43b3cd791b790f41c2da401c33a0b258b640bf4c1f1cebd2cac99a