diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-02 23:31:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-02 23:31:27 +0000 |
commit | fc90506367f5c90d79523072850c1bc52282600f (patch) | |
tree | 5c0079699afadb1f502a2d125ca499fc2a7866d9 /extra/Configs/Config.sh | |
parent | 5d575db6a1023dade1b9df569e69746334d2f8ea (diff) |
Fixes from M. R. Brown <mrbrown@0xd6.org> to fixup some little
compile nits with the SH architecture, and support SH4,
Diffstat (limited to 'extra/Configs/Config.sh')
-rw-r--r-- | extra/Configs/Config.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extra/Configs/Config.sh b/extra/Configs/Config.sh index 4e337e6f1..c19c04e2d 100644 --- a/extra/Configs/Config.sh +++ b/extra/Configs/Config.sh @@ -75,6 +75,10 @@ ifeq ($(strip $(TARGET_PROC)),SH3) ARCH_CFLAGS += -ml HAS_MMU = true endif +ifeq ($(strip $(TARGET_PROC)),SH4) +ARCH_CFLAGS += -ml -m4 +HAS_MMU = true +endif endif # Set this to `false' if you don't have/need basic floating point support |