diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-11 13:30:45 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-11-11 13:30:45 +0000 |
commit | 7aa763c72e5f8358e3ba8bbf1bc328cb8e8fc4de (patch) | |
tree | 7c71f6255d74e904faacf06547c070d9993a2ccd /Makefile.target | |
parent | 1c58b16694f719915b4e0b79ff2e7fda6488e9cb (diff) |
Use HOST_CC instead of CC on TCG only targets
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5687 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.target b/Makefile.target index 031ab456ec..3019f44f70 100644 --- a/Makefile.target +++ b/Makefile.target @@ -1,5 +1,9 @@ include config.mak +ifndef CONFIG_DYNGEN_OP +CC=$(HOST_CC) +endif + TARGET_BASE_ARCH:=$(TARGET_ARCH) ifeq ($(TARGET_ARCH), x86_64) TARGET_BASE_ARCH:=i386 |