aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Matz <matz@suse.de>2016-05-11 18:58:14 +0200
committerMichael Matz <matz@suse.de>2016-05-11 18:58:14 +0200
commit4d688282594ea0d9a2b402a7512cda41bbc326d0 (patch)
treef8bc44322a70dfde362251a1e2a96a037241f955
parent613962e35399e0b87baf8ac031b74aecd09f24f1 (diff)
downloadtinycc-4d688282594ea0d9a2b402a7512cda41bbc326d0.tar.gz
tinycc-4d688282594ea0d9a2b402a7512cda41bbc326d0.tar.bz2
tests: Compile asmtest.S without -m32
Don't hardcode that option, if you want it do make CC="gcc -m32". The test assembles with -m64 as well now.
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index cf817ad..0e601bd 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -199,7 +199,7 @@ ex%: $(top_srcdir)/examples/ex%.c
# tiny assembler testing
asmtest.ref: asmtest.S
- $(CC) -m32 -Wa,-W -o asmtest.ref.o -c asmtest.S
+ $(CC) -Wa,-W -o asmtest.ref.o -c asmtest.S
objdump -D asmtest.ref.o > asmtest.ref
asmtest: asmtest.ref