Changeset 19391
- Timestamp:
- 09/16/08 23:36:56 (5 years ago)
- Location:
- lang/cplusplus/llv8call/branches/nspr
- Files:
-
- 1 modified
- 1 moved
-
Sconstruct (modified) (2 diffs)
-
src/main.cc (moved) (moved from lang/cplusplus/llv8call/branches/nspr/src/llv8call.cc)
Legend:
- Unmodified
- Added
- Removed
-
lang/cplusplus/llv8call/branches/nspr/Sconstruct
r19355 r19391 35 35 SOURCES.append('platform-posix.cc') 36 36 37 if conf.CheckLib('readline'):38 print "have readline"39 libs.append('readline')40 env.Append(CCFLAGS = ['-DHAVE_READLINE'])41 if OS_GUESS == 'win32':42 env.Append(CCFLAGS = ['-DREADLINE_STATIC'])43 37 44 38 env.Append( 45 39 CCFLAGS = ['-g'], 46 LIBS=libs,47 40 CPPPATH=include, 48 41 LIBPATH=['../v8/', '/opt/local/lib/'], 49 )50 51 env.Program(52 "llv8call",53 ["src/" + x for x in ["llv8call.cc"] + SOURCES],54 42 ) 55 43 … … 57 45 "llv8call", 58 46 ["src/" + x for x in SOURCES], 47 LIBS=libs, 59 48 ) 49 50 cllibs = ['llv8call', 'v8'] 51 if conf.CheckLib('readline'): 52 cllibs.append('readline') 53 env.Append(CCFLAGS = ['-DHAVE_READLINE']) 54 if OS_GUESS == 'win32': 55 env.Append(CCFLAGS = ['-DREADLINE_STATIC']) 56 57 env.Program( 58 "llv8call", 59 ["src/main.cc"], 60 LIBPATH=['.', '../v8/', '/opt/local/lib/'], 61 LIBS=cllibs, 62 ) 63
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)