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

Chris Lattner lattner at apoc.cs.uiuc.edu
Thu Sep 19 14:45:01 PDT 2002


Changes in directory llvm:

Makefile.SunOS updated: 1.1 -> 1.2
Makefile.Linux updated: 1.1 -> 1.2

---
Log message:

Platform specific makefiles specify where to find the GCC frontend for their
architecture.  The location of the GCC frontend may be overridden by the
Makefile.config file.


---
Diffs of the changes:

Index: llvm/Makefile.SunOS
diff -u llvm/Makefile.SunOS:1.1 llvm/Makefile.SunOS:1.2
--- llvm/Makefile.SunOS:1.1	Fri Sep 13 17:14:46 2002
+++ llvm/Makefile.SunOS	Thu Sep 19 14:44:28 2002
@@ -15,4 +15,9 @@
 #
 ExportSymbols :=
 
-
+# Path to location for LLVM front-end for this architecture.  This setting may
+# be overriden by the Makefile.config option, and should not override it if set.
+#
+ifndef LLVMGCCDIR
+LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install
+endif


Index: llvm/Makefile.Linux
diff -u llvm/Makefile.Linux:1.1 llvm/Makefile.Linux:1.2
--- llvm/Makefile.Linux:1.1	Fri Sep 13 17:14:46 2002
+++ llvm/Makefile.Linux	Thu Sep 19 14:44:28 2002
@@ -15,4 +15,9 @@
 #
 ExportSymbols := -Wl,--export-dynamic
 
-
+# Path to location for LLVM front-end for this architecture.  This setting may
+# be overriden by the Makefile.config option, and should not override it if set.
+#
+ifndef LLVMGCCDIR
+LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_x86
+endif





More information about the llvm-commits mailing list