aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/v8/v8base.pri
blob: 209e4d5127a19120a132fcc284ad5411890537e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
V8DIR = $$(V8DIR)
isEmpty(V8DIR) {
    V8DIR = $$PWD/../../3rdparty/v8
} else {
    message(using external V8 from $$V8DIR)
}

*-g++*: {
    QMAKE_CFLAGS_WARN_ON += -Wno-unused-parameter
    QMAKE_CXXFLAGS_WARN_ON += -Wno-unused-parameter

    # mksnapshot hangs if gcc 4.5 is used
    # for reference look at http://code.google.com/p/v8/issues/detail?id=884
    # FIXME how to find 4.5 series?
    message(because of a bug in gcc / v8 we need to add -fno-strict-aliasing)
    QMAKE_CFLAGS += -fno-strict-aliasing
    QMAKE_CXXFLAGS += -fno-strict-aliasing
}