|
@@ -196,6 +196,12 @@ $(error When compiling for mipsel-embedded, a sub-architecture (e.g. SUBARCH=pic
|
|
|
endif
|
|
|
override FPCOPT+=-Cp$(SUBARCH)
|
|
|
endif
|
|
|
+ifeq ($(FULL_TARGET),xtensa-embedded)
|
|
|
+ifeq ($(SUBARCH),)
|
|
|
+$(error When compiling for xtensa-embedded, a sub-architecture (e.g. SUBARCH=lx106 or SUBARCH=lx6) must be defined)
|
|
|
+endif
|
|
|
+override FPCOPT+=-Cp$(SUBARCH)
|
|
|
+endif
|
|
|
ifneq ($(findstring $(OS_SOURCE),$(LIMIT83fs)),)
|
|
|
TARGETSUFFIX=$(OS_TARGET)
|
|
|
SOURCESUFFIX=$(OS_SOURCE)
|
|
@@ -2545,15 +2551,12 @@ ifneq ($(CROSSGCC),)
|
|
|
GCCLIBDIR:=$(shell dirname `$(CROSSGCC) -print-libgcc-file-name`)
|
|
|
endif
|
|
|
endif
|
|
|
-ifndef OTHERLIBDIR
|
|
|
-OTHERLIBDIR:=$(shell grep -v "^\#" /etc/ld.so.conf | awk '{ ORS=" "; print $1 }')
|
|
|
-endif
|
|
|
endif
|
|
|
ifdef inUnix
|
|
|
ifeq ($(OS_SOURCE),netbsd)
|
|
|
-OTHERLIBDIR+=/usr/pkg/lib
|
|
|
+OTHERLIBDIR:=/usr/pkg/lib
|
|
|
endif
|
|
|
-export GCCLIBDIR OTHERLIB
|
|
|
+export GCCLIBDIR OTHERLIBDIR
|
|
|
endif
|
|
|
BATCHEXT=.bat
|
|
|
LOADEREXT=.as
|