summaryrefslogtreecommitdiff
path: root/m68k-unknown-amigaos/recipes/patches/gcc/libiberty.make-temp-file.c.p
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-01-01 15:15:33 +0000
committerVincent Sanders <vince@kyllikki.org>2015-01-11 12:59:46 +0000
commit6d07d38a48ccb71f55cfacffbe86b83f4c75a28c (patch)
tree11490b607e64a3bc98b22f08625d548e285a39af /m68k-unknown-amigaos/recipes/patches/gcc/libiberty.make-temp-file.c.p
parent786ec473315d6960a65c4efdb64f71774b902f5b (diff)
downloadtoolchains-6d07d38a48ccb71f55cfacffbe86b83f4c75a28c.tar.gz
toolchains-6d07d38a48ccb71f55cfacffbe86b83f4c75a28c.tar.bz2
Use gcc 3.4.6 for m68k-amigaos-toolchain
This changes to using the 3.4 series gcc with patches from github:cahirwpz/m68k-amigaos-toolchain and some other modifications to make it compile. clib2 is currently failing to build with this compiler with the following errors: Compiling unistd_getopt.c [large_data_020:c] /tmp/ccrQcqYy.s: Assembler messages: /tmp/ccrQcqYy.s:36: Error: parse error -- statement `cmpl (sp.0),d0' ignored /tmp/ccrQcqYy.s:58: Error: parse error -- statement `movel (sp.0),a0' ignored /tmp/ccrQcqYy.s:86: Error: parse error -- statement `addql #1,(sp.0)' ignored /tmp/ccrQcqYy.s:89: Error: parse error -- statement `movel (sp.0),a0' ignored /tmp/ccrQcqYy.s:94: Error: parse error -- statement `movel d0,(sp.0)' ignored /tmp/ccrQcqYy.s:104: Error: parse error -- statement `addl (sp.0),a0' ignored /tmp/ccrQcqYy.s:129: Error: parse error -- statement `movel d0,(sp.0)' ignored /tmp/ccrQcqYy.s:139: Error: parse error -- statement `movel d0,(sp.0)' ignored /tmp/ccrQcqYy.s:143: Error: parse error -- statement `addql #1,(sp.0)' ignored /tmp/ccrQcqYy.s:146: Error: parse error -- statement `movel (sp.0),a0' ignored /tmp/ccrQcqYy.s:150: Error: parse error -- statement `movel d0,(sp.0)' ignored make[2]: *** [large_data_020/libc_objs/unistd_getopt.o] Error 1
Diffstat (limited to 'm68k-unknown-amigaos/recipes/patches/gcc/libiberty.make-temp-file.c.p')
-rw-r--r--m68k-unknown-amigaos/recipes/patches/gcc/libiberty.make-temp-file.c.p27
1 files changed, 27 insertions, 0 deletions
diff --git a/m68k-unknown-amigaos/recipes/patches/gcc/libiberty.make-temp-file.c.p b/m68k-unknown-amigaos/recipes/patches/gcc/libiberty.make-temp-file.c.p
new file mode 100644
index 0000000..fec49da
--- /dev/null
+++ b/m68k-unknown-amigaos/recipes/patches/gcc/libiberty.make-temp-file.c.p
@@ -0,0 +1,27 @@
+--- gcc-3.4.6/libiberty/make-temp-file.c 2001-10-17 23:15:41.000000000 +0200
++++ libiberty/make-temp-file.c 2013-05-19 20:23:32.000000000 +0200
+@@ -50,6 +50,10 @@
+ #define DIR_SEPARATOR '/'
+ #endif
+
++#ifdef __amigaos__
++#define VOL_SEPARATOR ':'
++#endif
++
+ /* Name of temporary file.
+ mktemp requires 6 trailing X's. */
+ #define TEMP_FILE "ccXXXXXX"
+@@ -126,8 +130,13 @@
+ len = strlen (base);
+ tmpdir = xmalloc (len + 2);
+ strcpy (tmpdir, base);
++#ifdef VOL_SEPARATOR
++ if (tmpdir[len-1] != DIR_SEPARATOR && tmpdir[len-1] != VOL_SEPARATOR)
++#endif
++{
+ tmpdir[len] = DIR_SEPARATOR;
+ tmpdir[len+1] = '\0';
++}
+
+ memoized_tmpdir = tmpdir;
+ return tmpdir;