diff options
Diffstat (limited to 'test/stdlib')
-rw-r--r-- | test/stdlib/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/stdlib/Makefile b/test/stdlib/Makefile index 43b942f99..863a56492 100644 --- a/test/stdlib/Makefile +++ b/test/stdlib/Makefile @@ -22,7 +22,7 @@ testmalloc: testmalloc.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(TESTC -@ echo " " -@ echo "Compiling vs uClibc: " -@ echo " " - $(TESTCC) $(CFLAGS) -c $< -o $@.o + $(TESTCC) $(TEST_CFLAGS) -c $< -o $@.o $(TESTCC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ -ldd $@ @@ -46,9 +46,9 @@ testmalloc_glibc: testmalloc.c Makefile mallocbug: mallocbug.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(TESTCC) -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uC-Libc: " + -@ echo "Compiling vs uClibc: " -@ echo " " - $(TESTCC) $(CFLAGS) -c $< -o $@.o + $(TESTCC) $(TEST_CFLAGS) -c $< -o $@.o $(TESTCC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ -ldd $@ @@ -79,9 +79,9 @@ teststrtol_source: teststrtol: teststrtol.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(TESTCC) -@ echo "-------" -@ echo " " - -@ echo "Compiling vs uC-Libc: " + -@ echo "Compiling vs uClibc: " -@ echo " " - $(TESTCC) $(CFLAGS) -c $< -o $@.o + $(TESTCC) $(TEST_CFLAGS) -c $< -o $@.o $(TESTCC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ -ldd $@ @@ -115,7 +115,7 @@ qsort: qsort.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(TESTCC) -@ echo " " -@ echo "Compiling vs uClibc: " -@ echo " " - $(TESTCC) $(CFLAGS) -c $< -o $@.o + $(TESTCC) $(TEST_CFLAGS) -c $< -o $@.o $(TESTCC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ -ldd $@ |