Changeset 67f5fbd9 in mainline for boot/arch/ppc32/loader/Makefile


Ignore:
Timestamp:
2007-05-31T21:14:14Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e8a0b90
Parents:
c31e536
Message:

update for new compiler configuration scheme

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ppc32/loader/Makefile

    rc31e536 r67f5fbd9  
    3636TOOLCHAIN_DIR = /usr/local/ppc/bin
    3737
    38 ifeq ($(COMPILER),native)
     38ifeq ($(COMPILER),gcc_native)
    3939        CC = gcc
    4040        AS = as
     
    4242        OBJCOPY = objcopy
    4343        OBJDUMP = objdump
    44 else
     44endif
     45
     46ifeq ($(COMPILER),icc_native)
     47        CC = icc
     48        AS = as
     49        LD = ld
     50        OBJCOPY = objcopy
     51        OBJDUMP = objdump
     52endif
     53
     54ifeq ($(COMPILER),gcc_cross)
    4555        CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
    4656        AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
Note: See TracChangeset for help on using the changeset viewer.