comparison make/linux/makefiles/gcc.make @ 2032:320ef6401fce

Merge
author ysr
date Thu, 16 Dec 2010 12:56:51 -0800
parents a5610f0862fe
children 5d801e6b9a80
comparison
equal deleted inserted replaced
2031:36eef023306f 2032:320ef6401fce
23 # 23 #
24 24
25 #------------------------------------------------------------------------ 25 #------------------------------------------------------------------------
26 # CC, CPP & AS 26 # CC, CPP & AS
27 27
28 ifdef ALT_COMPILER_PATH 28 # When cross-compiling the ALT_COMPILER_PATH points
29 # to the cross-compilation toolset
30 ifdef CROSS_COMPILE_ARCH
29 CPP = $(ALT_COMPILER_PATH)/g++ 31 CPP = $(ALT_COMPILER_PATH)/g++
30 CC = $(ALT_COMPILER_PATH)/gcc 32 CC = $(ALT_COMPILER_PATH)/gcc
31 else 33 else
32 CPP = g++ 34 CPP = g++
33 CC = gcc 35 CC = gcc