aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/v8/Makefile.nonqt
diff options
context:
space:
mode:
authorKent Hansen <kent.hansen@nokia.com>2011-07-26 12:53:00 +0200
committerQt by Nokia <qt-info@nokia.com>2011-07-26 14:15:07 +0200
commitc1c0b9c03cec9c5962e694bfc3e939e1504e6e59 (patch)
tree9c7ace3724de976966c5ff7cdb496e61d8d8f8ed /tests/auto/declarative/v8/Makefile.nonqt
parent83eb5ba0082cee15a5ca01000084c07fdb19af76 (diff)
Don't build V8 as a static library
In the future, we'll need to be able to export the V8 symbols from the QtDeclarative library, which requires compiling V8 straight in. It's not possible to achieve this using a static library. Change-Id: Ie9e31984d2c03639a311cef11ddd33ba0aa15fd9 Reviewed-on: http://codereview.qt.nokia.com/2187 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
Diffstat (limited to 'tests/auto/declarative/v8/Makefile.nonqt')
-rw-r--r--tests/auto/declarative/v8/Makefile.nonqt8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/declarative/v8/Makefile.nonqt b/tests/auto/declarative/v8/Makefile.nonqt
index 20be72ea9b..7ab695ba6a 100644
--- a/tests/auto/declarative/v8/Makefile.nonqt
+++ b/tests/auto/declarative/v8/Makefile.nonqt
@@ -1,11 +1,11 @@
release-m32:
- g++ -o v8test_release_m32 -m32 -O2 v8main.cpp v8test.cpp -L../../../../src/3rdparty/v8/ -lv8
+ g++ -o v8test_release_m32 -m32 -O2 v8main.cpp v8test.cpp -lpthread -L../../../../src/3rdparty/v8/ -lv8
debug-m32:
- g++ -o v8test_debug_m32 -m32 -g v8main.cpp v8test.cpp -L../../../../src/3rdparty/v8/ -lv8_g
+ g++ -o v8test_debug_m32 -m32 -g v8main.cpp v8test.cpp -lpthread -L../../../../src/3rdparty/v8/ -lv8_g
release:
- g++ -o v8test_release -O2 v8main.cpp v8test.cpp -L../../../../src/3rdparty/v8/ -lv8
+ g++ -o v8test_release -O2 v8main.cpp v8test.cpp -lpthread -L../../../../src/3rdparty/v8/ -lv8
debug:
- g++ -o v8test_debug -g v8main.cpp v8test.cpp -L../../../../src/3rdparty/v8/ -lv8_g
+ g++ -o v8test_debug -g v8main.cpp v8test.cpp -lpthread -L../../../../src/3rdparty/v8/ -lv8_g