commit b23d8329e7df6cf47b7d20fb19664496b4f29ca4
parent a56c8d609b24e4c1c3a8a5bacdced6ae53376ee2
Author: Frans Kaashoek <kaashoek@202.sub-75-194-25.myvzw.com>
Date: Tue, 9 Aug 2011 16:09:15 -0400
Allow gas to use / as divide (instead of comment)
Maybe not necessary, but don't want to waste time figuring this out again
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -74,7 +74,7 @@ OBJCOPY = $(TOOLPREFIX)objcopy
OBJDUMP = $(TOOLPREFIX)objdump
CFLAGS = -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer
CFLAGS += $(shell $(CC) -fno-stack-protector -E -x c /dev/null >/dev/null 2>&1 && echo -fno-stack-protector)
-ASFLAGS = -m32 -gdwarf-2
+ASFLAGS = -m32 -gdwarf-2 -Wa,-divide
# FreeBSD ld wants ``elf_i386_fbsd''
LDFLAGS += -m $(shell $(LD) -V | grep elf_i386 2>/dev/null)