Changeset 67f5fbd9 in mainline for uspace/libc/Makefile.toolchain


Ignore:
Timestamp:
2007-05-31T21:14:14Z (18 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
  • uspace/libc/Makefile.toolchain

    rc31e536 r67f5fbd9  
    4141#
    4242
    43 ifeq ($(COMPILER),native)
     43ifeq ($(COMPILER),gcc_native)
    4444        CC = gcc
    4545        AS = as
     
    4848        OBJCOPY = objcopy
    4949        OBJDUMP = objdump
    50 else
     50endif
     51
     52ifeq ($(COMPILER),icc_native)
     53        CC = icc
     54        AS = as
     55        LD = ld
     56        AR = ar
     57        OBJCOPY = objcopy
     58        OBJDUMP = objdump
     59endif
     60
     61ifeq ($(COMPILER),gcc_cross)
    5162        CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
    5263        AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
Note: See TracChangeset for help on using the changeset viewer.