Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Unified Diff: Makefile.standalone

Issue 514723004: Subzero: Fix the link command for Trusty. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile.standalone
diff --git a/Makefile.standalone b/Makefile.standalone
index 169fd81f5eb64ad3dcfa3bba4db61c2cd0f031bf..a562bf2d116ad67f1e105973cf0bb489e9d5b498 100644
--- a/Makefile.standalone
+++ b/Makefile.standalone
@@ -34,7 +34,8 @@ $(info Using HOST_ARCH = $(HOST_ARCH))
$(info -----------------------------------------------)
LLVM_CXXFLAGS := `$(LLVM_BIN_PATH)/llvm-config --cxxflags`
-LLVM_LDFLAGS := `$(LLVM_BIN_PATH)/llvm-config --ldflags --libs`
+LLVM_LDFLAGS := `$(LLVM_BIN_PATH)/llvm-config --libs` \
+ `$(LLVM_BIN_PATH)/llvm-config --ldflags`
jvoung (off chromium) 2014/08/27 17:55:19 Just heads up -- I think in llvm 3.5 or 3.6 this g
# It's recommended that CXX matches the compiler you used to build LLVM itself.
OPTLEVEL := -O0
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698