Building V8 is an adventure every time.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3410 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2017-11-18 22:45:00 +00:00
parent 37a9d856af
commit 0ef8a8919a
2 changed files with 9 additions and 5 deletions

View File

@ -74,8 +74,8 @@ elif sys.platform == 'darwin':
os.path.join(uv, 'build/Release'),
])
else:
env.Append(LIBS=['pthread', 'uv', 'rt', 'dl'])
env.Append(CXXFLAGS=['--std=c++0x', '-g', '-Wall'])
env.Append(LIBS=['uv', 'rt', 'dl', 'pthread'])
env.Append(CXXFLAGS=['--std=c++11', '-g', '-Wall'])
env.Append(CFLAGS=['-g', '-Wall'])
env.Append(LINKFLAGS=['-g'])
env.Append(LIBPATH=[
@ -95,6 +95,7 @@ env.Append(LIBS=[lmdb])
if sys.platform == 'linux2':
env.Append(LIBS=['crypto', 'ssl'])
env.Append(LINKFLAGS=['-std=c++0x'])
source = [s for s in Glob('build/src/*.cpp') if not os.path.basename(str(s)).startswith("SecureSocket_")]
if sys.platform == 'darwin':