From 4d688282594ea0d9a2b402a7512cda41bbc326d0 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Wed, 11 May 2016 18:58:14 +0200 Subject: [PATCH] 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. --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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