Compare commits
9 Commits
6.1.0-2mam
...
9.2.0-4mam
Author | SHA1 | Date | |
---|---|---|---|
628b8909d7 | |||
5ae53db6f7 | |||
753d4b61f2 | |||
75955c0210 | |||
38649232e0 | |||
a7ab85556c | |||
7c3a8f2281 | |||
74633b6112 | |||
cf935f49cc |
BIN
ecj-latest.jar
BIN
ecj-latest.jar
Binary file not shown.
@ -1,11 +0,0 @@
|
||||
--- gcc-5.2.0/Makefile.in.orig 2015-08-16 18:06:23.099725324 +0200
|
||||
+++ gcc-5.2.0/Makefile.in 2015-08-16 18:06:33.553684921 +0200
|
||||
@@ -43118,7 +43118,7 @@
|
||||
$$s/$$module_srcdir/configure \
|
||||
--srcdir=$${topdir}/$$module_srcdir \
|
||||
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
||||
- --target=${target_alias} $(EXTRA_CONFIGARGS_LIBJAVA) \
|
||||
+ --target=${target_alias} $(EXTRA_CONFIGARGS_LIBJAVA) --disable-multilib \
|
||||
|| exit 1
|
||||
@endif target-libjava
|
||||
|
@ -1,36 +0,0 @@
|
||||
--- gcc-6.1.0/gcc/java/decl.c.orig 2016-02-08 16:36:16.000000000 +0100
|
||||
+++ gcc-6.1.0/gcc/java/decl.c 2016-05-08 13:57:25.854163381 +0200
|
||||
@@ -507,7 +507,7 @@
|
||||
parse_version (void)
|
||||
{
|
||||
const char *p = version_string;
|
||||
- unsigned int major = 0, minor = 0;
|
||||
+ unsigned int major = 0;
|
||||
unsigned int abi_version;
|
||||
|
||||
/* Skip leading junk. */
|
||||
@@ -525,13 +525,6 @@
|
||||
gcc_assert (*p == '.' && ISDIGIT (p[1]));
|
||||
++p;
|
||||
|
||||
- /* Extract minor version. */
|
||||
- while (ISDIGIT (*p))
|
||||
- {
|
||||
- minor = minor * 10 + *p - '0';
|
||||
- ++p;
|
||||
- }
|
||||
-
|
||||
if (flag_indirect_dispatch)
|
||||
{
|
||||
abi_version = GCJ_CURRENT_BC_ABI_VERSION;
|
||||
--- gcc-6.1.0/gcc/java/decl.c.orig 2016-05-08 17:15:16.964134546 +0200
|
||||
+++ gcc-6.1.0/gcc/java/decl.c 2016-05-08 17:15:25.304134521 +0200
|
||||
@@ -535,7 +535,7 @@
|
||||
/* Implicit in this computation is the idea that we won't break the
|
||||
old-style binary ABI in a sub-minor release (e.g., from 4.0.0 to
|
||||
4.0.1). */
|
||||
- abi_version = 100000 * major + 1000 * minor;
|
||||
+ abi_version = 100000 * major;
|
||||
}
|
||||
if (flag_bootstrap_classes)
|
||||
abi_version |= FLAG_BOOTSTRAP_LOADER;
|
20
gcc-7.1.0-cross-ftbfs-ucontet_t.patch
Normal file
20
gcc-7.1.0-cross-ftbfs-ucontet_t.patch
Normal file
@ -0,0 +1,20 @@
|
||||
--- gcc-7.1.0/libgcc/config/i386/linux-unwind.h.orig 2017-10-17 15:57:36.616505453 +0200
|
||||
+++ gcc-7.1.0/libgcc/config/i386/linux-unwind.h 2017-10-17 15:57:54.791574061 +0200
|
||||
@@ -58,7 +58,7 @@
|
||||
if (*(unsigned char *)(pc+0) == 0x48
|
||||
&& *(unsigned long long *)(pc+1) == RT_SIGRETURN_SYSCALL)
|
||||
{
|
||||
- struct ucontext *uc_ = context->cfa;
|
||||
+ struct ucontext_t *uc_ = context->cfa;
|
||||
/* The void * cast is necessary to avoid an aliasing warning.
|
||||
The aliasing warning is correct, but should not be a problem
|
||||
because it does not alias anything. */
|
||||
@@ -138,7 +138,7 @@
|
||||
siginfo_t *pinfo;
|
||||
void *puc;
|
||||
siginfo_t info;
|
||||
- struct ucontext uc;
|
||||
+ struct ucontext_t uc;
|
||||
} *rt_ = context->cfa;
|
||||
/* The void * cast is necessary to avoid an aliasing warning.
|
||||
The aliasing warning is correct, but should not be a problem
|
Reference in New Issue
Block a user