summaryrefslogtreecommitdiffstats
path: root/make/leaf.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-26 14:22:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-26 14:22:55 +0000
commit65a60cd427f0d59560ccdc6e7ac479006db03128 (patch)
treeadef879f28426ddcd59988d7c059470099fb39c1 /make/leaf.cfg
parentidir=/opt/tmp/opt/rtems (diff)
downloadrtems-65a60cd427f0d59560ccdc6e7ac479006db03128.tar.bz2
Removed all references to HOST_ARCH including the file gcc.cfg.in. All
host programs are now compiled with automake generated rules. This was done after discussions with Ralf Corsepius and Eric Norum.
Diffstat (limited to 'make/leaf.cfg')
-rw-r--r--make/leaf.cfg12
1 files changed, 3 insertions, 9 deletions
diff --git a/make/leaf.cfg b/make/leaf.cfg
index b02af689fd..06407755ae 100644
--- a/make/leaf.cfg
+++ b/make/leaf.cfg
@@ -34,16 +34,10 @@ MANAGERS := $(patsubst all, $(MANAGER_LIST), $(MANAGERS))
# and finally rip out duplicates
MANAGERS := $(sort $(MANAGERS))
-# Pull in the desired compiler
-# This is almost always the "target" compiler.
-# But sometimes, you have to build something on the host.
-# Allow for that by allowing individual Makefiles specify $(USE_HOST_COMPILER)
+# Pull in the desired "target" compiler
+# Programs built on the host use automake generated rules.
# This will not change $(ARCH) -- binaries will still be place as per target
-ifeq (,$(USE_HOST_COMPILER))
- include ${CONFIG.$(TARGET_ARCH).CC}
-else
- include $(CONFIG.$(HOST_ARCH).CC)
-endif
+include ${CONFIG.$(TARGET_ARCH).CC}
ifeq (${DEPEND},$(wildcard ${DEPEND}))
include ${DEPEND} # pull in dependencies if they exist
endif