Changeset 67f5fbd9 in mainline for uspace


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

Location:
uspace
Files:
2 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
  • uspace/uspace.config

    rc31e536 r67f5fbd9  
    1414
    1515# Compiler
    16 @ "cross" Cross-compiler
    17 @ "native" Native
     16@ "gcc_cross" GCC Cross-compiler
     17@ "gcc_native" GCC Native
     18@ "icc_native" ICC Native
    1819! COMPILER (choice)
    1920
Note: See TracChangeset for help on using the changeset viewer.