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

Unified Diff: build/common.gypi

Issue 1056043002: Fix mips build error 'undefined reference to dlopen' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index b0dbfb8ac9fe134b1df5cba55e5a703e85eb3feb..2353aa41314aa2b26e7abafe719fb8efd3275297 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -4141,7 +4141,8 @@
'-m<(mips_float_abi)-float'
],
'ldflags': [
- '-Wl,--no-keep-memory'
+ '-Wl,--no-keep-memory',
+ '-ldl',
],
'cflags_cc': [
'-Wno-uninitialized',
@@ -4165,6 +4166,9 @@
'cflags_cc': [
'-Wno-uninitialized',
],
+ 'ldflags': [
+ '-ldl',
+ ],
}],
],
}],
« 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