Changeset 977623b in rtems
- Timestamp:
- 10/05/99 18:39:56 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0439dba
- Parents:
- b22feedc
- Files:
-
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
README.configure
rb22feedc r977623b 187 187 188 188 a29k : portsw 189 i386 : force386 i386ex pc386 190 i386-go32 : go32 go32_p5 189 i386 : i386ex pc386 191 190 i960 : cvme961 192 191 hppa1.1 : simhppa -
c/src/make/README
rb22feedc r977623b 97 97 example): 98 98 99 o- force386/ -- binaries (no debug, no profile)100 o- force386-debug/ -- debug binaries101 o- force386-profile/ -- profiling binaries99 o-pc386/ -- binaries (no debug, no profile) 100 o-pc386-debug/ -- debug binaries 101 o-pc386-profile/ -- profiling binaries 102 102 103 103 Using the template Makefiles, this will all happen automatically. 104 104 105 Within a Makefile, the ${ARCH} variable is set to o- force386,106 o- force386-debug, etc., as appropriate.107 108 Typing 'make' will place objects in o- force386.109 'make debug' will place objects in o- force386-debug.110 'make profile' will place objects in o- force386-profile.111 112 NOTE: For RTEMS work, the word ' force386' is the specified105 Within a Makefile, the ${ARCH} variable is set to o-pc386, 106 o-pc386-debug, etc., as appropriate. 107 108 Typing 'make' will place objects in o-pc386. 109 'make debug' will place objects in o-pc386-debug. 110 'make profile' will place objects in o-pc386-profile. 111 112 NOTE: For RTEMS work, the word 'pc386' is the specified 113 113 RTEMS_BSP (specified in the modules file) 114 114 … … 189 189 RTEMS_CUSTOM must point to this file; eg: 190 190 191 /.../make/custom/ force386.cfg191 /.../make/custom/pc386.cfg 192 192 193 193 All leaf Makefile's also include either 'make/leaf.cfg' (or … … 218 218 files you want to include. 219 219 220 Example: custom/ force386.cfg220 Example: custom/pc386.cfg 221 221 222 222 CONFIG.$(HOST_ARCH).OS = $(RTEMS_ROOT)/make/os/HPUX-9.0.cfg … … 229 229 ## Target compiler config file, if any 230 230 CC_$(TARGET_ARCH)_DIR=$(RTEMS_GNUTOOLS) 231 CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc- force386.cfg231 CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-pc386.cfg 232 232 233 233 generic rules file … … 277 277 --------------------- 278 278 279 RTEMS_BSP -- name of your 'bsp' eg: force386279 RTEMS_BSP -- name of your 'bsp' eg: pc386 280 280 281 281 RTEMS_ROOT -- The root of your source tree. … … 328 328 329 329 ARCH -- target sub-directory for object code 330 [ eg: o- force386 or o-force386-debug ]330 [ eg: o-pc386 or o-pc386-debug ] 331 331 332 332 HOST_ARCH … … 336 336 VARIANTS -- full list of all possible values for $(ARCH); 337 337 used mainly for 'make clean' 338 [ eg: "o- force386 o-force386-debug o-force386-profile" ]338 [ eg: "o-pc386 o-pc386-debug o-pc386-profile" ] 339 339 340 340 VARIANT_VA -- Variant name. … … 456 456 you don't need to duplicate items in both. 457 457 458 TARGET_ARCH -- target architecture (eg: o- force386)458 TARGET_ARCH -- target architecture (eg: o-pc386) 459 459 leaf makefiles only. 460 460 Should be specified before 'include leaf.cfg'. -
make/README
rb22feedc r977623b 97 97 example): 98 98 99 o- force386/ -- binaries (no debug, no profile)100 o- force386-debug/ -- debug binaries101 o- force386-profile/ -- profiling binaries99 o-pc386/ -- binaries (no debug, no profile) 100 o-pc386-debug/ -- debug binaries 101 o-pc386-profile/ -- profiling binaries 102 102 103 103 Using the template Makefiles, this will all happen automatically. 104 104 105 Within a Makefile, the ${ARCH} variable is set to o- force386,106 o- force386-debug, etc., as appropriate.107 108 Typing 'make' will place objects in o- force386.109 'make debug' will place objects in o- force386-debug.110 'make profile' will place objects in o- force386-profile.111 112 NOTE: For RTEMS work, the word ' force386' is the specified105 Within a Makefile, the ${ARCH} variable is set to o-pc386, 106 o-pc386-debug, etc., as appropriate. 107 108 Typing 'make' will place objects in o-pc386. 109 'make debug' will place objects in o-pc386-debug. 110 'make profile' will place objects in o-pc386-profile. 111 112 NOTE: For RTEMS work, the word 'pc386' is the specified 113 113 RTEMS_BSP (specified in the modules file) 114 114 … … 189 189 RTEMS_CUSTOM must point to this file; eg: 190 190 191 /.../make/custom/ force386.cfg191 /.../make/custom/pc386.cfg 192 192 193 193 All leaf Makefile's also include either 'make/leaf.cfg' (or … … 218 218 files you want to include. 219 219 220 Example: custom/ force386.cfg220 Example: custom/pc386.cfg 221 221 222 222 CONFIG.$(HOST_ARCH).OS = $(RTEMS_ROOT)/make/os/HPUX-9.0.cfg … … 229 229 ## Target compiler config file, if any 230 230 CC_$(TARGET_ARCH)_DIR=$(RTEMS_GNUTOOLS) 231 CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc- force386.cfg231 CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-pc386.cfg 232 232 233 233 generic rules file … … 277 277 --------------------- 278 278 279 RTEMS_BSP -- name of your 'bsp' eg: force386279 RTEMS_BSP -- name of your 'bsp' eg: pc386 280 280 281 281 RTEMS_ROOT -- The root of your source tree. … … 328 328 329 329 ARCH -- target sub-directory for object code 330 [ eg: o- force386 or o-force386-debug ]330 [ eg: o-pc386 or o-pc386-debug ] 331 331 332 332 HOST_ARCH … … 336 336 VARIANTS -- full list of all possible values for $(ARCH); 337 337 used mainly for 'make clean' 338 [ eg: "o- force386 o-force386-debug o-force386-profile" ]338 [ eg: "o-pc386 o-pc386-debug o-pc386-profile" ] 339 339 340 340 VARIANT_VA -- Variant name. … … 456 456 you don't need to duplicate items in both. 457 457 458 TARGET_ARCH -- target architecture (eg: o- force386)458 TARGET_ARCH -- target architecture (eg: o-pc386) 459 459 leaf makefiles only. 460 460 Should be specified before 'include leaf.cfg'.
Note: See TracChangeset
for help on using the changeset viewer.