diff options
-rw-r--r-- | ldso/ldso/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ldso/ldso/Makefile b/ldso/ldso/Makefile index bd924b142..8dcfb4a88 100644 --- a/ldso/ldso/Makefile +++ b/ldso/ldso/Makefile @@ -37,6 +37,9 @@ XXFLAGS+=-O0 -g3 endif endif +# BEWARE!!! At least mips* will die if -O0 is used!!! +XXFLAGS :=$(XXFLAGS:-O0=-O1) + XXFLAGS+=$(shell $(CC) -print-search-dirs | sed -ne "s/install: *\(.*\)/-I\1include/gp") LDFLAGS=$(CPU_LDFLAGS-y) -shared --warn-common --export-dynamic --sort-common \ -z combreloc --discard-locals --discard-all --no-undefined |