[llvm-commits] CVS: llvm-test/Makefile.programs Makefile.config.in

Lauro Ramos Venancio lauro.venancio at gmail.com
Fri May 4 14:51:04 PDT 2007



Changes in directory llvm-test:

Makefile.programs updated: 1.265 -> 1.266
Makefile.config.in updated: 1.25 -> 1.26
---
Log message:

Merge Evan's remote test implementation with mine: Allow to define the 
crosscompilers (cross gcc and cross llvm-gcc).



---
Diffs of the changes:  (+33 -1)

 Makefile.config.in |   28 ++++++++++++++++++++++++++++
 Makefile.programs  |    6 +++++-
 2 files changed, 33 insertions(+), 1 deletion(-)


Index: llvm-test/Makefile.programs
diff -u llvm-test/Makefile.programs:1.265 llvm-test/Makefile.programs:1.266
--- llvm-test/Makefile.programs:1.265	Thu May  3 16:32:39 2007
+++ llvm-test/Makefile.programs	Fri May  4 16:50:39 2007
@@ -170,6 +170,10 @@
 profile:: $(PROFOUTPUT)
 print-profile:: $(PRINTPROFOUTPUT)
 
+# JIT remote tests are not supported yet.
+ifdef REMOTE_HOST
+  DISABLE_JIT := 1
+endif
 
 ifdef RUN_GCC_ONLY
 DISABLE_DIFFS = 1
@@ -237,7 +241,7 @@
 ifeq ($(ARCH),Sparc)
 LLCBETAOPTION := -enable-sparc-v9-insts
 endif
-ifeq ($(TARGET_ARCH),ARM)
+ifeq ($(ARCH),ARM)
 LLCBETAOPTION := -march=thumb
 endif
 


Index: llvm-test/Makefile.config.in
diff -u llvm-test/Makefile.config.in:1.25 llvm-test/Makefile.config.in:1.26
--- llvm-test/Makefile.config.in:1.25	Fri Feb 16 12:23:33 2007
+++ llvm-test/Makefile.config.in	Fri May  4 16:50:39 2007
@@ -28,6 +28,34 @@
 SourceDir=$(PROJ_SRC_DIR)
 endif
 
+ifdef TARGET_ARCH
+ARCH := $(TARGET_ARCH)
+endif
+
+ifdef TARGET_CC
+CC := $(TARGET_CC)
+endif
+
+ifdef TARGET_CXX
+CXX := $(TARGET_CXX)
+endif
+
+ifdef TARGET_LLVMGCC
+LLVMGCC := $(TARGET_LLVMGCC)
+endif
+
+ifdef TARGET_LLVMGXX
+LLVMGXX := $(TARGET_LLVMGXX)
+endif
+
+ifdef TARGET_LLVMGCCDIR
+LLVMGCCDIR := $(TARGET_LLVMGCCDIR)
+endif
+
+ifdef TARGET_LLVMGCCLIBDIR
+LLVMGCCLIBDIR := $(TARGET_LLVMGCCLIBDIR)
+endif
+
 #
 # Provide variables specific to llvm-test
 #






More information about the llvm-commits mailing list