diff options
author | Thomas Huth <thuth@linux.vnet.ibm.com> | 2011-11-04 18:22:10 +0100 |
---|---|---|
committer | Thomas Huth <thuth@linux.vnet.ibm.com> | 2011-11-17 12:10:37 +0100 |
commit | 047ef92897e40079328d11fddd92e1dab75e2dc4 (patch) | |
tree | 970d109a94a9c5d696734bafaf0decd31971fa4d /other-licence | |
parent | e43f0673c4dbf95df451f938df9fcb0a67670df3 (diff) | |
download | SLOF-047ef92897e40079328d11fddd92e1dab75e2dc4.zip SLOF-047ef92897e40079328d11fddd92e1dab75e2dc4.tar.gz SLOF-047ef92897e40079328d11fddd92e1dab75e2dc4.tar.bz2 |
Silenced some compiler warnings
When the biosemu has been enabled, there were some additional compiler warnings
showing up which have been silenced now.
Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
Diffstat (limited to 'other-licence')
-rw-r--r-- | other-licence/x86emu/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/other-licence/x86emu/Makefile b/other-licence/x86emu/Makefile index 5f1fac4..c25bc15 100644 --- a/other-licence/x86emu/Makefile +++ b/other-licence/x86emu/Makefile @@ -22,8 +22,10 @@ LDFLAGS = ASFLAGS = -I./include -Wa,-mregnames #NOTE: -DDEBUG only needed for debugging/tracing... -#CFLAGS = -DDEBUG -I. -I./include -I./include/x86emu -I$(ROOTDIR)/include -I$(ROOTDIR)/lib/libc/include -g -O2 -msoft-float -Wall -save-temps -nostdinc -fno-builtin -ffreestanding -CFLAGS = -UDEBUG -m64 -I. -I./include -I./include/x86emu -I$(TOP)/clients/net-snk/include -I$(ROOTDIR)/include -I$(ROOTDIR)/lib/libc/include -O3 -Wall -nostdinc -fno-builtin -ffreestanding +CFLAGS = -UDEBUG -m64 -I. -I./include -I./include/x86emu \ + -I$(TOP)/clients/net-snk/include -I$(ROOTDIR)/include \ + -I$(ROOTDIR)/lib/libc/include -O3 -nostdinc -fno-builtin \ + -ffreestanding -Wall -Wno-unused X86EMU_OBJS = debug.o decode.o fpu.o ops2.o ops.o prim_ops.o sys.o |