aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2013-02-28 16:55:10 +0100
committerThomas Preud'homme <robotux@celest.fr>2013-11-05 19:29:43 +0800
commitfbb4841606b555311048229cf26de22ea5cf0682 (patch)
treee46f040c43768e22a37c1beeb0e2c07d12d1be87 /Makefile
parentb7d017dec89984b8536139ec6053fc0255413c27 (diff)
downloadtinycc-fbb4841606b555311048229cf26de22ea5cf0682.tar.gz
tinycc-fbb4841606b555311048229cf26de22ea5cf0682.tar.bz2
Add __clear_cache implementation in libtcc1
Add __clear_cache function for flushing caches to libtcc1.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4a27364..ce151e1 100644
--- a/Makefile
+++ b/Makefile
@@ -66,7 +66,7 @@ NATIVE_DEFINES_$(CONFIG_i386) += -DTCC_TARGET_I386
NATIVE_DEFINES_$(CONFIG_x86-64) += -DTCC_TARGET_X86_64
NATIVE_DEFINES_$(CONFIG_WIN32) += -DTCC_TARGET_PE
NATIVE_DEFINES_$(CONFIG_uClibc) += -DTCC_UCLIBC
-NATIVE_DEFINES_$(CONFIG_arm) += -DTCC_TARGET_ARM -DWITHOUT_LIBTCC
+NATIVE_DEFINES_$(CONFIG_arm) += -DTCC_TARGET_ARM
NATIVE_DEFINES_$(CONFIG_arm_eabihf) += -DTCC_ARM_EABI -DTCC_ARM_HARDFLOAT
NATIVE_DEFINES_$(CONFIG_arm_eabi) += -DTCC_ARM_EABI
NATIVE_DEFINES_$(CONFIG_arm_vfp) += -DTCC_ARM_VFP
@@ -122,6 +122,7 @@ LIBTCC1=libtcc1.a
else ifeq ($(ARCH),arm)
NATIVE_FILES=$(ARM_FILES)
PROGS_CROSS=$(I386_CROSS) $(X64_CROSS) $(WIN32_CROSS) $(WIN64_CROSS) $(C67_CROSS)
+LIBTCC1=libtcc1.a
endif
ifeq ($(TARGETOS),Darwin)