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

Unified Diff: SConstruct

Issue 11347: Apply patch from Alexander Botero-Lowry that adds FreeBSD platform (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 1 month 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 | « AUTHORS ('k') | src/SConscript » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
===================================================================
--- SConstruct (revision 812)
+++ SConstruct (working copy)
@@ -54,6 +54,9 @@
'mode:release': {
'CCFLAGS': ['-O3', '-fomit-frame-pointer']
},
+ 'os:freebsd': {
+ 'LIBS': ['execinfo']
+ },
'wordsize:64': {
'CCFLAGS': ['-m32'],
'LINKFLAGS': ['-m32']
@@ -186,6 +189,9 @@
'LIBS': ['pthread'],
'LIBPATH': ['.']
},
+ 'os:freebsd': {
+ 'LIBS': ['execinfo']
+ },
'wordsize:64': {
'CCFLAGS': ['-m32'],
'LINKFLAGS': ['-m32']
@@ -264,7 +270,7 @@
'help': 'the toolchain to use'
},
'os': {
- 'values': ['linux', 'macos', 'win32'],
+ 'values': ['freebsd', 'linux', 'macos', 'win32'],
'default': OS_GUESS,
'help': 'the os to build for'
},
@@ -541,7 +547,7 @@
env.Alias('cctests', cctests)
env.Alias('sample', samples)
env.Alias('d8', d8s)
-
+
if env['sample']:
env.Default('sample')
else:
« no previous file with comments | « AUTHORS ('k') | src/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698