[llvm-commits] [llvm] r83813 - /llvm/trunk/tools/gold/Makefile
Nick Lewycky
nicholas at mxc.ca
Sun Oct 11 16:10:09 PDT 2009
Author: nicholas
Date: Sun Oct 11 18:10:09 2009
New Revision: 83813
URL: http://llvm.org/viewvc/llvm-project?rev=83813&view=rev
Log:
Fix Makefile to build correctly on Darwin. Patch by Sandeep Patel!
Modified:
llvm/trunk/tools/gold/Makefile
Modified: llvm/trunk/tools/gold/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/gold/Makefile?rev=83813&r1=83812&r2=83813&view=diff
==============================================================================
--- llvm/trunk/tools/gold/Makefile (original)
+++ llvm/trunk/tools/gold/Makefile Sun Oct 11 18:10:09 2009
@@ -8,7 +8,7 @@
##===----------------------------------------------------------------------===##
LEVEL = ../..
-LIBRARYNAME = LLVMgold
+LIBRARYNAME = libLLVMgold
# Include this here so we can get the configuration of the targets
# that have been configured for construction. We have to do this
@@ -18,8 +18,9 @@
LINK_LIBS_IN_SHARED=1
SHARED_LIBRARY = 1
BUILD_ARCHIVE = 0
+LOADABLE_MODULE = 1
-LINK_COMPONENTS :=
+LINK_COMPONENTS := support system
LIBS += -llto
# Because off_t is used in the public API, the largefile parts are required for
More information about the llvm-commits
mailing list