From cd68e527cd685ab2ce2f98b5d6f76e499f3ddfc7 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 5 Jun 2016 23:07:24 +0000 Subject: [PATCH] Fixes linux. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3242 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 50dfe5a0..c51b3063 100644 --- a/SConstruct +++ b/SConstruct @@ -45,7 +45,7 @@ elif sys.platform == 'darwin': os.path.join(uv, 'build/Release'), ]) else: - env.Append(LIBS=['v8_base', 'v8_libbase', 'v8_libplatform', 'v8_nosnapshot', 'icui18n', 'icuuc', 'icudata', 'pthread', 'uv', 'rt', 'dl']) + env.Append(LIBS=['v8_libplatform', 'v8_base', 'v8_libbase', 'v8_nosnapshot', 'icui18n', 'icuuc', 'icudata', 'pthread', 'uv', 'rt', 'dl']) env.Append(CXXFLAGS=['--std=c++0x', '-g', '-Wall']) env.Append(CFLAGS=['-g', '-Wall']) env.Append(LINKFLAGS=['-g'])