[llvm-commits] CVS: llvm/Makefile.Linux Makefile.SunOS

Chris Lattner lattner at cs.uiuc.edu
Thu Dec 5 21:46:01 PST 2002


Changes in directory llvm:

Makefile.Linux updated: 1.5 -> 1.6
Makefile.SunOS updated: 1.5 -> 1.6

---
Log message:

Export a new ARCH variable indicating what platform is being compiled


---
Diffs of the changes:

Index: llvm/Makefile.Linux
diff -u llvm/Makefile.Linux:1.5 llvm/Makefile.Linux:1.6
--- llvm/Makefile.Linux:1.5	Mon Nov  4 14:50:33 2002
+++ llvm/Makefile.Linux	Thu Dec  5 21:45:20 2002
@@ -5,6 +5,9 @@
 #
 #===-----------------------------------------------------------------------====#
 
+# Set the architecture so that x86 platform dependant code is compmiled
+ARCH := x86
+
 # MakeSharedObjectOption - This option is passed to the linker by
 # Makefile.common when compiling a shared object.
 #


Index: llvm/Makefile.SunOS
diff -u llvm/Makefile.SunOS:1.5 llvm/Makefile.SunOS:1.6
--- llvm/Makefile.SunOS:1.5	Mon Nov  4 15:03:13 2002
+++ llvm/Makefile.SunOS	Thu Dec  5 21:45:20 2002
@@ -5,6 +5,9 @@
 #
 #===-----------------------------------------------------------------------====#
 
+# Set the architecture so that Sparc platform dependant code is compmiled
+ARCH := Sparc
+
 # MakeSharedObjectOption - This option is passed to the linker by
 # Makefile.common when compiling a shared object.
 #





More information about the llvm-commits mailing list