File tree 3 files changed +4
-6
lines changed
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -132,9 +132,10 @@ before_script:
132
132
fi
133
133
134
134
script :
135
+ - export CXXFLAGS="${CXXFLAGS:-} -include $(pwd)/src/gcc-preinclude.h"
135
136
- if [[ "${NODE_VERSION}" ]]; then ./scripts/build_against_node.sh; fi;
136
- - nm lib/binding/*/node_sqlite3.node | grep "GLIBCXX_" || true
137
- - nm lib/binding/*/node_sqlite3.node | grep "GLIBC_" || true
137
+ - nm lib/binding/*/node_sqlite3.node | grep "GLIBCXX_" | c++filt | | true
138
+ - nm lib/binding/*/node_sqlite3.node | grep "GLIBC_" | c++filt | | true
138
139
- if [[ "${NODE_VERSION}" -eq "4" ]]; then ./node_modules/.bin/eslint lib; fi;
139
140
# disabled for now: need to port to sudo:false
140
141
# - if [[ "${NODE_WEBKIT}" ]]; then ./scripts/build_against_node_webkit.sh; fi;
Original file line number Diff line number Diff line change 31
31
}
32
32
]
33
33
],
34
- "cflags" : [ "-include ../src/gcc-preinclude.h" ],
35
34
"sources" : [
36
35
"src/database.cc" ,
37
36
"src/node_sqlite3.cc" ,
Original file line number Diff line number Diff line change 71
71
'dependencies' : [
72
72
'action_before_build'
73
73
],
74
- 'cflags' : [ '-include ../src/gcc-preinclude.h' ],
75
74
'sources' : [
76
75
'<(SHARED_INTERMEDIATE_DIR)/sqlite-autoconf-<@(sqlite_version)/sqlite3.c'
77
76
],
87
86
],
88
87
},
89
88
'cflags_cc' : [
90
- '-Wno-unused-value' ,
91
- '-include ../src/gcc-preinclude.h'
89
+ '-Wno-unused-value'
92
90
],
93
91
'defines' : [
94
92
'_REENTRANT=1' ,
You can’t perform that action at this time.
0 commit comments