Author: [email protected]
Date: Mon Mar 30 00:19:14 2009
New Revision: 1636
Modified:
trunk/SConstruct
Log:
Added library references to linking of the shared V8 library.
On Linux the shared V8 library is now linked with libraries pthread and rt
which means that applications using the shared V8 library will not need to
link with libraries required by V8 but not by the application using V8.
BUG=290
Review URL: http://codereview.chromium.org/56056
Modified: trunk/SConstruct
==============================================================================
--- trunk/SConstruct (original)
+++ trunk/SConstruct Mon Mar 30 00:19:14 2009
@@ -103,6 +103,9 @@
},
'os:linux': {
'CCFLAGS': ['-ansi'],
+ 'library:shared': {
+ 'LIBS': ['pthread', 'rt']
+ }
},
'os:macos': {
'CCFLAGS': ['-ansi'],
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---