diff --git a/hashes/gcc-6.4.0.tar.xz.sha1 b/hashes/gcc-6.4.0.tar.xz.sha1 new file mode 100644 index 0000000..b8af9dd --- /dev/null +++ b/hashes/gcc-6.4.0.tar.xz.sha1 @@ -0,0 +1 @@ +f237974b2d3af0f60936ce6a2f35b912a91e0239 gcc-6.4.0.tar.xz diff --git a/patches/gcc-6.4.0/0001-linux_libc_has_function.diff b/patches/gcc-6.4.0/0001-linux_libc_has_function.diff new file mode 120000 index 0000000..afe4c5f --- /dev/null +++ b/patches/gcc-6.4.0/0001-linux_libc_has_function.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0001-linux_libc_has_function.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0002-ssp_nonshared.diff b/patches/gcc-6.4.0/0002-ssp_nonshared.diff new file mode 120000 index 0000000..ea09efb --- /dev/null +++ b/patches/gcc-6.4.0/0002-ssp_nonshared.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0002-ssp_nonshared.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0003-mips-unwind.diff b/patches/gcc-6.4.0/0003-mips-unwind.diff new file mode 120000 index 0000000..8e5f941 --- /dev/null +++ b/patches/gcc-6.4.0/0003-mips-unwind.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0003-mips-unwind.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0004-posix_memalign.diff b/patches/gcc-6.4.0/0004-posix_memalign.diff new file mode 100644 index 0000000..16fefa3 --- /dev/null +++ b/patches/gcc-6.4.0/0004-posix_memalign.diff @@ -0,0 +1,30 @@ +diff --git a/gcc/config/i386/pmm_malloc.h b/gcc/config/i386/pmm_malloc.h +index a9c2be4..2596a90 100644 +--- a/gcc/config/i386/pmm_malloc.h ++++ b/gcc/config/i386/pmm_malloc.h +@@ -27,12 +27,13 @@ + #include + + /* We can't depend on since the prototype of posix_memalign +- may not be visible. */ ++ may not be visible and we can't pollute the namespace either. */ + #ifndef __cplusplus +-extern int posix_memalign (void **, size_t, size_t); ++extern int _mm_posix_memalign (void **, size_t, size_t) + #else +-extern "C" int posix_memalign (void **, size_t, size_t) throw (); ++extern "C" int _mm_posix_memalign (void **, size_t, size_t) throw () + #endif ++__asm__("posix_memalign"); + + static __inline void * + _mm_malloc (size_t __size, size_t __alignment) +@@ -42,7 +43,7 @@ _mm_malloc (size_t __size, size_t __alignment) + return malloc (__size); + if (__alignment == 2 || (sizeof (void *) == 8 && __alignment == 4)) + __alignment = sizeof (void *); +- if (posix_memalign (&__ptr, __alignment, __size) == 0) ++ if (_mm_posix_memalign (&__ptr, __alignment, __size) == 0) + return __ptr; + else + return NULL; diff --git a/patches/gcc-6.4.0/0005-cilkrts.diff b/patches/gcc-6.4.0/0005-cilkrts.diff new file mode 120000 index 0000000..0b0e9a5 --- /dev/null +++ b/patches/gcc-6.4.0/0005-cilkrts.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0005-cilkrts.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0006-libatomic-test-fix.diff b/patches/gcc-6.4.0/0006-libatomic-test-fix.diff new file mode 120000 index 0000000..40de698 --- /dev/null +++ b/patches/gcc-6.4.0/0006-libatomic-test-fix.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0006-libatomic-test-fix.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0007-libgomp-test-fix.diff b/patches/gcc-6.4.0/0007-libgomp-test-fix.diff new file mode 120000 index 0000000..22f19bc --- /dev/null +++ b/patches/gcc-6.4.0/0007-libgomp-test-fix.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0007-libgomp-test-fix.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0008-libitm-test-fix.diff b/patches/gcc-6.4.0/0008-libitm-test-fix.diff new file mode 120000 index 0000000..2ead61a --- /dev/null +++ b/patches/gcc-6.4.0/0008-libitm-test-fix.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0008-libitm-test-fix.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0009-libvtv-test-fix.diff b/patches/gcc-6.4.0/0009-libvtv-test-fix.diff new file mode 120000 index 0000000..b33ead5 --- /dev/null +++ b/patches/gcc-6.4.0/0009-libvtv-test-fix.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0009-libvtv-test-fix.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0010-static-pie-support.diff b/patches/gcc-6.4.0/0010-static-pie-support.diff new file mode 120000 index 0000000..88e3978 --- /dev/null +++ b/patches/gcc-6.4.0/0010-static-pie-support.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0010-static-pie-support.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0011-j2.diff b/patches/gcc-6.4.0/0011-j2.diff new file mode 120000 index 0000000..2c39b0c --- /dev/null +++ b/patches/gcc-6.4.0/0011-j2.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0011-j2.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0012-s390x-muslldso.diff b/patches/gcc-6.4.0/0012-s390x-muslldso.diff new file mode 120000 index 0000000..3d8cd78 --- /dev/null +++ b/patches/gcc-6.4.0/0012-s390x-muslldso.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0012-s390x-muslldso.diff \ No newline at end of file diff --git a/patches/gcc-6.4.0/0013-microblaze-pr65649.diff b/patches/gcc-6.4.0/0013-microblaze-pr65649.diff new file mode 120000 index 0000000..2ac644c --- /dev/null +++ b/patches/gcc-6.4.0/0013-microblaze-pr65649.diff @@ -0,0 +1 @@ +../gcc-6.3.0/0013-microblaze-pr65649.diff \ No newline at end of file