aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.Linux7
-rw-r--r--Makefile.SunOS7
2 files changed, 12 insertions, 2 deletions
diff --git a/Makefile.Linux b/Makefile.Linux
index 2a3e4a6..39928d9 100644
--- a/Makefile.Linux
+++ b/Makefile.Linux
@@ -15,4 +15,9 @@ MakeSharedObjectOption := -shared
#
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
diff --git a/Makefile.SunOS b/Makefile.SunOS
index 9afae8a..2b4eeb3 100644
--- a/Makefile.SunOS
+++ b/Makefile.SunOS
@@ -15,4 +15,9 @@ MakeSharedObjectOption := -G
#
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