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.
master
Michael Matz 2016-05-11 18:58:14 +02:00
parent 613962e353
commit 4d68828259
1 changed files with 1 additions and 1 deletions

View File

@ -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