Changeset 2
- Timestamp:
- 12/10/2006 07:42:22 PM (5 years ago)
- Files:
-
- 4 edited
-
Bindings/glfw/SConstruct (modified) (1 diff)
-
Plugins/luaScripting/SConstruct (modified) (1 diff)
-
SConstruct (modified) (1 diff)
-
config.log (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Bindings/glfw/SConstruct
r1 r2 21 21 22 22 # Specify the library path where to search and the libraries to which to link 23 libpaths = ['.', './lib', '/usr/local/lib', '/usr/lib']24 libs = ['glfw' , 'Xxf86vm']23 libpaths = ['.', build['prefix'] + '/lib', '/usr/local/lib', '/usr/lib', './lib'] 24 libs = ['glfw'] 25 25 26 26 # if we have to build shared version -
Plugins/luaScripting/SConstruct
r1 r2 16 16 17 17 # Specify the library path where to search and the libraries to which to link 18 libpaths = ['.', '/usr/local/lib', '/usr/lib']18 libpaths = ['.', build['prefix'] + '/lib', '/usr/local/lib', '/usr/lib'] 19 19 libs = ['lua'] 20 20 -
SConstruct
r1 r2 142 142 BuildDir('nrEngine/build', 'nrEngine/src', duplicate=0) 143 143 144 build.SConscript('nrEngine/SConstruct', 'build') 145 build.SConscript([ 146 'Bindings/glfw/SConstruct', 147 'Plugins/luaScripting/SConstruct' 148 ], 'build') 144 build.SConscript('nrEngine/SConstruct','build') 145 build.SConscript('Bindings/glfw/SConstruct','build') 146 build.SConscript('Plugins/luaScripting/SConstruct', 'build') 149 147 -
config.log
r1 r2 1 1 2 file SConstruct,line 33: 2 Configure(confdir = .sconf_temp) 3 scons: Configure: Checking for C++ header file vector... 4 .sconf_temp/conftest_0.cpp <- 5 | 6 |#include "vector" 7 | 8 | 9 g++ -o .sconf_temp/build/conftest_0.o -c -Wall -Werror -pthread .sconf_temp/conftest_0.cpp 10 scons: Configure: yes 3 Configure( confdir = .sconf_temp ) 11 4 12 scons: Configure: Checking for C++ header file map... 13 .sconf_temp/conftest_1.cpp <- 14 | 15 |#include "map" 16 | 17 | 18 g++ -o .sconf_temp/build/conftest_1.o -c -Wall -Werror -pthread .sconf_temp/conftest_1.cpp 19 scons: Configure: yes 20 21 scons: Configure: Checking for C++ header file iostream... 22 .sconf_temp/conftest_2.cpp <- 23 | 24 |#include "iostream" 25 | 26 | 27 g++ -o .sconf_temp/build/conftest_2.o -c -Wall -Werror -pthread .sconf_temp/conftest_2.cpp 28 scons: Configure: yes 29 30 scons: Configure: Checking for C++ header file fstream... 31 .sconf_temp/conftest_3.cpp <- 32 | 33 |#include "fstream" 34 | 35 | 36 g++ -o .sconf_temp/build/conftest_3.o -c -Wall -Werror -pthread .sconf_temp/conftest_3.cpp 37 scons: Configure: yes 38 39 scons: Configure: Checking for C++ header file boost/shared_ptr.hpp... 40 .sconf_temp/conftest_4.cpp <- 41 | 42 |#include "boost/shared_ptr.hpp" 43 | 44 | 45 g++ -o .sconf_temp/build/conftest_4.o -c -Wall -Werror -pthread .sconf_temp/conftest_4.cpp 46 scons: Configure: yes 47 48 scons: Configure: Checking for C++ header file boost/any.hpp... 49 .sconf_temp/conftest_5.cpp <- 50 | 51 |#include "boost/any.hpp" 52 | 53 | 54 g++ -o .sconf_temp/build/conftest_5.o -c -Wall -Werror -pthread .sconf_temp/conftest_5.cpp 55 scons: Configure: yes 56 57 scons: Configure: Checking for C++ header file boost/lexical_cast.hpp... 58 .sconf_temp/conftest_6.cpp <- 59 | 60 |#include "boost/lexical_cast.hpp" 61 | 62 | 63 g++ -o .sconf_temp/build/conftest_6.o -c -Wall -Werror -pthread .sconf_temp/conftest_6.cpp 64 scons: Configure: yes 65 66 scons: Configure: Checking for C++ header file boost/shared_array.hpp... 67 .sconf_temp/conftest_7.cpp <- 68 | 69 |#include "boost/shared_array.hpp" 70 | 71 | 72 g++ -o .sconf_temp/build/conftest_7.o -c -Wall -Werror -pthread .sconf_temp/conftest_7.cpp 73 scons: Configure: yes 74 75 scons: Configure: Checking for C++ header file boost/function.hpp... 76 .sconf_temp/conftest_8.cpp <- 77 | 78 |#include "boost/function.hpp" 79 | 80 | 81 g++ -o .sconf_temp/build/conftest_8.o -c -Wall -Werror -pthread .sconf_temp/conftest_8.cpp 82 scons: Configure: yes 83 84 scons: Configure: Checking for C++ header file boost/thread/thread.hpp... 85 .sconf_temp/conftest_9.cpp <- 86 | 87 |#include "boost/thread/thread.hpp" 88 | 89 | 90 g++ -o .sconf_temp/build/conftest_9.o -c -Wall -Werror -pthread .sconf_temp/conftest_9.cpp 91 scons: Configure: yes 92 93 scons: Configure: Checking for main() in C library dl... 94 .sconf_temp/conftest_10.c <- 95 | 96 | 97 | 98 |int 99 |main() { 100 | main(); 101 |return 0; 102 |} 103 | 104 g++ -o .sconf_temp/build/conftest_10.o -c -Wall -Werror -pthread .sconf_temp/conftest_10.c 105 g++ -o .sconf_temp/bin/conftest_10 .sconf_temp/build/conftest_10.o -ldl 106 scons: Configure: yes 107 108 scons: Configure: Checking for C function dlopen()... 109 .sconf_temp/conftest_11.c <- 110 | 111 | 112 |#include <assert.h> 113 | 114 |#ifdef __cplusplus 115 |extern "C" 116 |#endif 117 |char dlopen(); 118 | 119 |int main() { 120 |#if defined (__stub_dlopen) || defined (__stub___dlopen) 121 | fail fail fail 122 |#else 123 | dlopen(); 124 |#endif 125 | 126 | return 0; 127 |} 128 | 129 g++ -o .sconf_temp/build/conftest_11.o -c -Wall -Werror -pthread .sconf_temp/conftest_11.c 130 g++ -o .sconf_temp/bin/conftest_11 .sconf_temp/build/conftest_11.o -ldl 131 scons: Configure: yes 132 133 5 Checking for C++ header file vector... scons: `.sconf_temp/conftest_0.cpp' is up to date. 6 scons: `.sconf_temp/build/conftest_0.o' is up to date. 7 yes 8 Checking for C++ header file map... scons: `.sconf_temp/conftest_1.cpp' is up to date. 9 scons: `.sconf_temp/build/conftest_1.o' is up to date. 10 yes 11 Checking for C++ header file iostream... scons: `.sconf_temp/conftest_2.cpp' is up to date. 12 scons: `.sconf_temp/build/conftest_2.o' is up to date. 13 yes 14 Checking for C++ header file fstream... scons: `.sconf_temp/conftest_3.cpp' is up to date. 15 scons: `.sconf_temp/build/conftest_3.o' is up to date. 16 yes 17 Checking for C++ header file boost/shared_ptr.hpp... scons: `.sconf_temp/conftest_4.cpp' is up to date. 18 scons: `.sconf_temp/build/conftest_4.o' is up to date. 19 yes 20 Checking for C++ header file boost/any.hpp... scons: `.sconf_temp/conftest_5.cpp' is up to date. 21 scons: `.sconf_temp/build/conftest_5.o' is up to date. 22 yes 23 Checking for C++ header file boost/lexical_cast.hpp... scons: `.sconf_temp/conftest_6.cpp' is up to date. 24 scons: `.sconf_temp/build/conftest_6.o' is up to date. 25 yes 26 Checking for C++ header file boost/shared_array.hpp... scons: `.sconf_temp/conftest_7.cpp' is up to date. 27 scons: `.sconf_temp/build/conftest_7.o' is up to date. 28 yes 29 Checking for C++ header file boost/function.hpp... scons: `.sconf_temp/conftest_8.cpp' is up to date. 30 scons: `.sconf_temp/build/conftest_8.o' is up to date. 31 yes 32 Checking for C++ header file boost/thread/thread.hpp... scons: `.sconf_temp/conftest_9.cpp' is up to date. 33 scons: `.sconf_temp/build/conftest_9.o' is up to date. 34 yes 35 Checking for main() in C library dl... scons: `.sconf_temp/conftest_10.c' is up to date. 36 scons: `.sconf_temp/bin/conftest_10' is up to date. 37 yes 38 Checking for C function dlopen()... scons: `.sconf_temp/conftest_11.c' is up to date. 39 scons: `.sconf_temp/bin/conftest_11' is up to date. 40 yes
Note: See TracChangeset
for help on using the changeset viewer.
