diff options
-rw-r--r-- | libc/sysdeps/linux/lm32/Makefile.arch | 4 | ||||
-rw-r--r-- | test/regex/Makefile.in | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/lm32/Makefile.arch b/libc/sysdeps/linux/lm32/Makefile.arch index eed9e7ba1..1442a40b4 100644 --- a/libc/sysdeps/linux/lm32/Makefile.arch +++ b/libc/sysdeps/linux/lm32/Makefile.arch @@ -5,5 +5,5 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CSRC := -SSRC := clone.S setjmp.S __longjmp.S vfork.S +CSRC-y := +SSRC-y := clone.S setjmp.S __longjmp.S vfork.S diff --git a/test/regex/Makefile.in b/test/regex/Makefile.in index 1573840b9..ef1e3034f 100644 --- a/test/regex/Makefile.in +++ b/test/regex/Makefile.in @@ -1 +1,6 @@ +# triggers gcc ICE with gcc 5.3.0 +ifeq ($(TARGET_lm32),y) +TESTS_DISABLED := testregex +endif + CFLAGS_tst-regex2 = -fPIC |