Changeset ca0bafa7 in rtems for make/custom/posix.cfg
- Timestamp:
- 05/18/98 16:40:13 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 98c73895
- Parents:
- 0500c342
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
make/custom/posix.cfg
r0500c342 rca0bafa7 7 7 include $(PROJECT_ROOT)/make/target.cfg 8 8 include $(PROJECT_ROOT)/make/host.cfg 9 10 # Set them here, otherwise gcc-target-default.cfg will set them to values 11 # not working on some os variants (linux-RH5.0, glibc versions 2.0.0 - 2.0.7) 12 # These should be available on all unices 13 LIBC_LIBC=-lc 14 LIBC_LIBM=-lm 9 15 10 16 include $(RTEMS_ROOT)/make/custom/$(RTEMS_HOST)-posix.cfg … … 31 37 endif 32 38 endif 39 # Setting formerly contained in gcc-<TARGET_ARCH>.cfg 33 40 41 # Not applicable - let's override 'em 42 LINKCMDS= 43 START_FILE= 44 START_BASE= 45 46 # Here is the rule to actually build a $(ARCH)/foo.exe 47 # It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm 48 # Usage ref: src/tests/sptest/sp1/Makefile 49 # 50 # 'NODE' is set to 1 or 2 for multi cpu tests (ref: mptests/mp01/node1/Makefile) 51 # If NODE is set as an environment variable, don't trust it, zero it out. 52 # (NODE turns out to be a very common environment variable) 53 ifeq (,$(NODE)) 54 NODE=0 55 else 56 ifeq "$(origin NODE)" "environment" 57 NODE=0 58 endif 59 endif 60
Note: See TracChangeset
for help on using the changeset viewer.