Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2437 → Rev 2438

/trunk/uspace/uspace.config
13,8 → 13,9
! ARCH (choice)
 
# Compiler
@ "cross" Cross-compiler
@ "native" Native
@ "gcc_cross" GCC Cross-compiler
@ "gcc_native" GCC Native
@ "icc_native" ICC Native
! COMPILER (choice)
 
# General debuging and assert checking
/trunk/uspace/libc/Makefile.toolchain
40,7 → 40,7
## Toolchain configuration
#
 
ifeq ($(COMPILER),native)
ifeq ($(COMPILER),gcc_native)
CC = gcc
AS = as
LD = ld
47,7 → 47,18
AR = ar
OBJCOPY = objcopy
OBJDUMP = objdump
else
endif
 
ifeq ($(COMPILER),icc_native)
CC = icc
AS = as
LD = ld
AR = ar
OBJCOPY = objcopy
OBJDUMP = objdump
endif
 
ifeq ($(COMPILER),gcc_cross)
CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld