Changeset 65a60cd in rtems
- Timestamp:
- 10/26/99 14:22:55 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- cb50837d
- Parents:
- 2782e69
- Files:
-
- 2 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/make/README
r2782e69 r65a60cd 218 218 files you want to include. 219 219 220 Example: custom/pc386.cfg221 222 CONFIG.$(HOST_ARCH).OS = $(RTEMS_ROOT)/make/os/HPUX-9.0.cfg223 224 # HOST Compiler config file225 # You may also want to specify where the compiler resides here.226 CC_$(HOST_ARCH)_DIR=/usr/local227 CONFIG.$(HOST_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc.cfg228 229 ## Target compiler config file, if any230 CC_$(TARGET_ARCH)_DIR=$(RTEMS_GNUTOOLS)231 CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-pc386.cfg232 233 220 generic rules file 234 221 ------------------ … … 307 294 the config files. 308 295 309 CONFIG.$(HOST_ARCH).CC310 -- full path of C compilation config file, set by custom311 config file.312 313 296 PROJECT_RELEASE 314 297 -- release/install directory … … 329 312 ARCH -- target sub-directory for object code 330 313 [ eg: o-pc386 or o-pc386-debug ] 331 332 HOST_ARCH333 -- host machine architecture name334 [ eg: sun4, sparc on SVR4 ]335 314 336 315 VARIANTS -- full list of all possible values for $(ARCH); -
c/src/make/compilers/Makefile.am
r2782e69 r65a60cd 11 11 ## use gcc-target-default.cfg only. 12 12 rtems_make_compilers_DATA= \ 13 gcc.cfg \14 13 gcc-target-default.cfg 15 14 16 if MAINTAINER_MODE17 $(srcdir)/gcc.cfg.in: $(top_srcdir)/@RTEMS_TOPdir@/make/compilers/gcc.cfg.in18 cp $< $@19 endif20 21 15 include $(top_srcdir)/../../../automake/local.am -
c/src/make/configure.in
r2782e69 r65a60cd 129 129 custom/default.cfg 130 130 compilers/Makefile 131 compilers/gcc.cfg132 131 ) -
make/README
r2782e69 r65a60cd 218 218 files you want to include. 219 219 220 Example: custom/pc386.cfg221 222 CONFIG.$(HOST_ARCH).OS = $(RTEMS_ROOT)/make/os/HPUX-9.0.cfg223 224 # HOST Compiler config file225 # You may also want to specify where the compiler resides here.226 CC_$(HOST_ARCH)_DIR=/usr/local227 CONFIG.$(HOST_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc.cfg228 229 ## Target compiler config file, if any230 CC_$(TARGET_ARCH)_DIR=$(RTEMS_GNUTOOLS)231 CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-pc386.cfg232 233 220 generic rules file 234 221 ------------------ … … 307 294 the config files. 308 295 309 CONFIG.$(HOST_ARCH).CC310 -- full path of C compilation config file, set by custom311 config file.312 313 296 PROJECT_RELEASE 314 297 -- release/install directory … … 329 312 ARCH -- target sub-directory for object code 330 313 [ eg: o-pc386 or o-pc386-debug ] 331 332 HOST_ARCH333 -- host machine architecture name334 [ eg: sun4, sparc on SVR4 ]335 314 336 315 VARIANTS -- full list of all possible values for $(ARCH); -
make/compilers/Makefile.am
r2782e69 r65a60cd 8 8 gcc-no_bsp.cfg \ 9 9 gcc-portsw.cfg \ 10 gcc-target-default.cfg \ 11 gcc.cfg.in 10 gcc-target-default.cfg 12 11 13 12 ## ------------------------------------------------------- -
make/custom/HPUX9-posix.cfg
r2782e69 r65a60cd 6 6 7 7 # Specify here the host and target "architectures" 8 HOST_ARCH=o-$(RTEMS_HOST)9 TARGET_ARCH=o-$(RTEMS_BSP)10 11 8 RTEMS_CPU=unix 12 9 RTEMS_CPU_FAMILY=hppa1_1 -
make/custom/default.cfg
r2782e69 r65a60cd 13 13 14 14 # Specify here the host and target "architectures" 15 HOST_ARCH=o-$(RTEMS_HOST)16 15 ifndef TARGET_ARCH 17 16 TARGET_ARCH=o-$(RTEMS_BSP) … … 31 30 endif 32 31 33 # HOST Compiler config file34 # You may also want to specify where the compiler resides here.35 CONFIG.$(HOST_ARCH).CC = $(PROJECT_ROOT)/make/compilers/gcc.cfg36 37 32 ## Target compiler config file, if any 38 33 CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-target-default.cfg -
make/leaf.cfg
r2782e69 r65a60cd 35 35 MANAGERS := $(sort $(MANAGERS)) 36 36 37 # Pull in the desired compiler 38 # This is almost always the "target" compiler. 39 # But sometimes, you have to build something on the host. 40 # Allow for that by allowing individual Makefiles specify $(USE_HOST_COMPILER) 37 # Pull in the desired "target" compiler 38 # Programs built on the host use automake generated rules. 41 39 # This will not change $(ARCH) -- binaries will still be place as per target 42 ifeq (,$(USE_HOST_COMPILER)) 43 include ${CONFIG.$(TARGET_ARCH).CC} 44 else 45 include $(CONFIG.$(HOST_ARCH).CC) 46 endif 40 include ${CONFIG.$(TARGET_ARCH).CC} 47 41 ifeq (${DEPEND},$(wildcard ${DEPEND})) 48 42 include ${DEPEND} # pull in dependencies if they exist
Note: See TracChangeset
for help on using the changeset viewer.