diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-08-10 22:14:22 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-08-10 22:14:22 +0000 |
commit | 38e584a07279fffcfbfcafb207ce842edd093033 (patch) | |
tree | 574d309b088a86987dd8bab48844d71996fdb76e /Makefile.target | |
parent | 313aa567104a63fbe84d6ec2eeff5b5c81cb3524 (diff) |
m68k host port (Richard Zidlicky)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@357 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.target b/Makefile.target index db72eeb080..27c79e8ca7 100644 --- a/Makefile.target +++ b/Makefile.target @@ -79,6 +79,11 @@ OP_CFLAGS=$(CFLAGS) -mno-sched-prolog LDFLAGS+=-Wl,-T,$(SRC_PATH)/arm.ld endif +ifeq ($(ARCH),m68k) +OP_CFLAGS=$(CFLAGS) -fomit-frame-pointer +LDFLAGS+=-Wl,-T,m68k.ld +endif + ifeq ($(HAVE_GCC3_OPTIONS),yes) # very important to generate a return at the end of every operation OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls |