diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-30 21:57:11 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-30 21:57:11 +0100 |
commit | c645d34d866a8c812616d05c9a738dab519f0b55 (patch) | |
tree | cdb2855effa7e7552da60d2bdf5689feac7323a5 | |
parent | 0561af53ed65d2149018219985e2f64bb8b8f668 (diff) |
add -fno-auto-inc-dec, otherwise apps like top segfault
-rw-r--r-- | target/cris/target.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/cris/target.mk b/target/cris/target.mk index 34e1f05ec..a0b68f06b 100644 --- a/target/cris/target.mk +++ b/target/cris/target.mk @@ -1,5 +1,5 @@ include $(TOPDIR)/mk/kernel-ver.mk ARCH:= cris CPU_ARCH:= cris -TARGET_OPTIMIZATION:= -Os -pipe -fno-peephole2 +TARGET_OPTIMIZATION:= -Os -pipe -fno-auto-inc-dec -fno-peephole2 TARGET_CFLAGS_ARCH:= -march=v10 |