Use HOST_CC for programs that will run on the build host

This commit is contained in:
Ian Romanick 2008-01-03 15:08:53 -08:00
parent ffcb4d8498
commit b3492a2052
3 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,7 @@ DRM_SOURCE_PATH=$(TOP)/../drm
# Compiler and flags
CC = cc
CXX = CC
HOST_CC = $(CC)
CFLAGS = -O
CXXFLAGS = -O
GLU_CFLAGS =

View File

@ -8,6 +8,7 @@ CONFIG_NAME = linux-cell
# Compiler and flags
CC = ppu32-gcc
CXX = ppu32-g++
HOST_CC = gcc
# Cell SDK location
SDK = /opt/ibm/cell-sdk/prototype/sysroot/usr

View File

@ -21,7 +21,7 @@ clean:
gen_matypes: gen_matypes.c
$(CC) $(INCLUDE_DIRS) $(CFLAGS) gen_matypes.c -o gen_matypes
$(HOST_CC) $(INCLUDE_DIRS) $(HOST_CFLAGS) gen_matypes.c -o gen_matypes
# need some special rules here, unfortunately
matypes.h: ../main/mtypes.h ../tnl/t_context.h gen_matypes