Changeset 67f5fbd9 in mainline for boot/arch/ppc32/loader/Makefile
- 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
-
boot/arch/ppc32/loader/Makefile
rc31e536 r67f5fbd9 36 36 TOOLCHAIN_DIR = /usr/local/ppc/bin 37 37 38 ifeq ($(COMPILER), native)38 ifeq ($(COMPILER),gcc_native) 39 39 CC = gcc 40 40 AS = as … … 42 42 OBJCOPY = objcopy 43 43 OBJDUMP = objdump 44 else 44 endif 45 46 ifeq ($(COMPILER),icc_native) 47 CC = icc 48 AS = as 49 LD = ld 50 OBJCOPY = objcopy 51 OBJDUMP = objdump 52 endif 53 54 ifeq ($(COMPILER),gcc_cross) 45 55 CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc 46 56 AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
Note:
See TracChangeset
for help on using the changeset viewer.