Changeset 67f5fbd9 in mainline for uspace/libc/Makefile.toolchain
- Timestamp:
- 2007-05-31T21:14:14Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e8a0b90
- Parents:
- c31e536
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/libc/Makefile.toolchain
rc31e536 r67f5fbd9 41 41 # 42 42 43 ifeq ($(COMPILER), native)43 ifeq ($(COMPILER),gcc_native) 44 44 CC = gcc 45 45 AS = as … … 48 48 OBJCOPY = objcopy 49 49 OBJDUMP = objdump 50 else 50 endif 51 52 ifeq ($(COMPILER),icc_native) 53 CC = icc 54 AS = as 55 LD = ld 56 AR = ar 57 OBJCOPY = objcopy 58 OBJDUMP = objdump 59 endif 60 61 ifeq ($(COMPILER),gcc_cross) 51 62 CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc 52 63 AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
Note:
See TracChangeset
for help on using the changeset viewer.