Changeset 371bd7d in mainline for boot/arch/ppc32/loader/Makefile.toolchain
- Timestamp:
- 2010-03-27T09:22:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a75a2
- Parents:
- cd82bb1 (diff), eaf22d4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ppc32/loader/Makefile.toolchain
rcd82bb1 r371bd7d 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 ifndef CROSS_PREFIX33 CROSS_PREFIX = /usr/local34 endif35 36 29 BFD_NAME = elf32-powerpc 37 30 BFD_ARCH = powerpc:common 38 TARGET = ppc-linux-gnu39 TOOLCHAIN_DIR = $(CROSS_PREFIX)/ppc32/bin40 31 41 ifeq ($(COMPILER),gcc_native) 42 CC = gcc 43 AS = as 44 LD = ld 45 OBJCOPY = objcopy 46 OBJDUMP = objdump 47 endif 48 49 ifeq ($(COMPILER),gcc_cross) 50 CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc 51 AS = $(TOOLCHAIN_DIR)/$(TARGET)-as 52 LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld 53 OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy 54 OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump 55 endif 32 JOBFILE = ../../../../tools/jobfile.py 56 33 57 34 CFLAGS = \
Note:
See TracChangeset
for help on using the changeset viewer.