Funcresolve no longer performs nicification of resolved functions
[oota-llvm.git] / Makefile.SunOS
index 5cfcacf40358c7d1a3a5f2024d8ebc793a7d1a80..bc6b49fe775aa25d5ab141da97ae98d8d5d9a1e8 100644 (file)
@@ -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.
 #
@@ -12,11 +15,22 @@ MakeSharedObjectOption := -G
 
 # PLATFORMLINKOPTS - On sun we need to link to libmalloc.so to get a definition
 # of mallinfo.
-ExportSymbols := -lmalloc
+PLATFORMLINKOPTS := -lmalloc
+
+# PLATFORMSTRIPOPTS - Command to pass to the link phase to cause symbols to be 
+# stripped from the resultant binary.
+#
+# FIXME: I don't know what this is for sun, so leave it alone
+#
+PLATFORMSTRIPOPTS :=
+
+# PLATFORMLIBDL - Library that supports dlsym() et al. 
+PLATFORMLIBDL := -ldl
 
 # 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.
 #
+LLVMGCCARCH := sparcv9-sun-solaris2.8/3.4-llvm
 ifndef LLVMGCCDIR
-LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_sparc
+LLVMGCCDIR  := /home/vadve/lattner/local/sparc/llvm-gcc/
 endif