diff options
author | dschuff@chromium.org <dschuff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-29 00:17:31 +0000 |
---|---|---|
committer | dschuff@chromium.org <dschuff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-29 00:17:31 +0000 |
commit | 0ce3e73704807ea6abef1830a8905fef18e14b89 (patch) | |
tree | 76060f17b37ab38d45d7b60674f19efe8a8ff0e2 /ppapi/native_client | |
parent | 236e3b2a7fefe969f2f7e3f02e2f4dad827dd64d (diff) | |
download | chromium_src-0ce3e73704807ea6abef1830a8905fef18e14b89.zip chromium_src-0ce3e73704807ea6abef1830a8905fef18e14b89.tar.gz chromium_src-0ce3e73704807ea6abef1830a8905fef18e14b89.tar.bz2 |
Link NaCl plugin with -lrt on Linux
Linking the plugin from the nacl build fails on Ubuntu Precise for lack of
shm_open
BUG= http://code.google.com/p/nativeclient/issues/detail?id=2871
TEST=it compiles
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/10699031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144843 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r-- | ppapi/native_client/src/trusted/plugin/build.scons | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/native_client/src/trusted/plugin/build.scons b/ppapi/native_client/src/trusted/plugin/build.scons index 816dd98..0cc1529 100644 --- a/ppapi/native_client/src/trusted/plugin/build.scons +++ b/ppapi/native_client/src/trusted/plugin/build.scons @@ -111,7 +111,7 @@ common_libs = [ os_libs = [ ] if plugin_env.Bit('linux'): - os_libs += ['dl', 'crypto'] + os_libs += ['dl', 'crypto', 'rt'] if plugin_env.Bit('windows'): os_libs += ['gdi32', 'user32', ] |