X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=cpu%2Fmips%2Fconfig.mk;h=a173c5480c0131e2c89808fee7f6398737061b52;hb=dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21;hp=3c9aab8dfe64b18110f541bc9277e2c864c48ac4;hpb=e3c9b9f9287a17c2a20d9b1b77747bd209e8408b;p=oweals%2Fu-boot.git diff --git a/cpu/mips/config.mk b/cpu/mips/config.mk index 3c9aab8dfe..a173c5480c 100644 --- a/cpu/mips/config.mk +++ b/cpu/mips/config.mk @@ -20,13 +20,20 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, # MA 02111-1307 USA # -v=$(shell \ -mips-linux-as --version|grep "GNU assembler"|awk '{print $$3}'|awk -F . '{print $$2}') -MIPSFLAGS=$(shell \ +v=$(shell $(AS) --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2) +MIPSFLAGS:=$(shell \ if [ "$v" -lt "14" ]; then \ - echo "-mcpu=4kc -EB -mabicalls"; \ + echo "-mcpu=4kc"; \ else \ - echo "-march=4kc -mtune=4kc -Wa,-mips_allow_branch_to_undefined -EB -mabicalls"; \ + echo "-march=4kc -mtune=4kc"; \ fi) +ifneq (,$(findstring 4KCle,$(CROSS_COMPILE))) +ENDIANNESS = -EL +else +ENDIANNESS = -EB +endif + +MIPSFLAGS += $(ENDIANNESS) + PLATFORM_CPPFLAGS += $(MIPSFLAGS)