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

Unified Diff: build/temp_gyp/v8.gyp

Issue 53057: src/platform-linux.cc in v8_base now seems to need '-lrt' for... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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/temp_gyp/v8.gyp
===================================================================
--- build/temp_gyp/v8.gyp (revision 12452)
+++ build/temp_gyp/v8.gyp (working copy)
@@ -335,8 +335,14 @@
['exclude', 'src/platform-.*\\.cc$' ],
],
'conditions': [
- ['OS=="linux"',
+ ['OS=="linux"',
{
+ 'link_settings': {
+ 'libraries': [
+ # Needed for clock_gettime() used by src/platform-linux.cc.
+ '-lrt',
+ ],
+ },
'sources/': [
['include', 'src/platform-linux\\.cc$'],
['include', 'src/platform-posix\\.cc$']
@@ -379,6 +385,9 @@
'<(SHARED_INTERMEDIATE_DIR)/v8/libraries.cc',
'../../v8/src/snapshot-empty.cc',
],
+ 'export_dependent_settings': [
+ 'v8_base',
+ ],
},
{
'target_name': 'mksnapshot',
@@ -424,6 +433,9 @@
'../../v8/include',
],
},
+ 'export_dependent_settings': [
+ 'v8_base',
+ ],
},
{
'target_name': 'v8_shell',
« 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