diff options
author | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-14 11:17:51 +0000 |
---|---|---|
committer | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-14 11:17:51 +0000 |
commit | efe25e2f17d2c8859b30fe666466de405ffa8f27 (patch) | |
tree | ccd6c1ed23f10aef22c7d34866d25273d9ea9320 /build | |
parent | a61d561545b48f95d6b36c40c80caf50ed0a902b (diff) | |
download | chromium_src-efe25e2f17d2c8859b30fe666466de405ffa8f27.zip chromium_src-efe25e2f17d2c8859b30fe666466de405ffa8f27.tar.gz chromium_src-efe25e2f17d2c8859b30fe666466de405ffa8f27.tar.bz2 |
Implement nspr time on Linux.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@863 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/SConscript.main | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/SConscript.main b/build/SConscript.main index ac22314..d1599d4 100644 --- a/build/SConscript.main +++ b/build/SConscript.main @@ -312,7 +312,8 @@ elif env['PLATFORM'] == 'posix': # TODO(linux): we should also compile with -Werror, but not yet. CCFLAGS = ['-m32', '-g'], LINKFLAGS = ['-m32'], - LIBS = ['pthread'], + # We need pthread for threading, and rt for clock_gettime. + LIBS = ['pthread', 'rt'], ) else: |