Skip to content

Commit

Permalink
Use c++11 explicitly for WebKit
Browse files Browse the repository at this point in the history
The idea here is that by specifying the compiler version (4.7 already required) and standard we should hopefully avoid issues such as #128 when trying to build with newer compilers or OS versions.
  • Loading branch information
BenSpencer committed Jan 6, 2016
1 parent bb5cba0 commit ec800b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ help:
@echo " fetch-qt - Fetch, configure and makes Qt"

CORES = `grep -c ^processor /proc/cpuinfo`
WEBKIT_BUILD_SCRIPT = ./WebKit/Tools/Scripts/build-webkit --qt --qmakearg="DEFINES+=ARTEMIS=1" --makearg="-j$(CORES)" --qmakearg="CC=gcc-4.7" --qmakearg="CXX=g++-4.7" --no-webkit2 --inspector --javascript-debugger
WEBKIT_BUILD_SCRIPT = ./WebKit/Tools/Scripts/build-webkit --qt --qmakearg="DEFINES+=ARTEMIS=1" --makearg="-j$(CORES)" --qmakearg="CC=gcc-4.7" --qmakearg="CXX=g++-4.7" --qmakearg="QMAKE_CXXFLAGS+=\" -std=c++11 \"" --no-webkit2 --inspector --javascript-debugger
WEBKIT_TEST_SCRIPT = ./WebKit/Tools/Scripts/run-javascriptcore-tests --qmakearg="DEFINES+=ARTEMIS=1" --debug

CONTRIB_Z3 = ./contrib/Z3
Expand Down

0 comments on commit ec800b7

Please sign in to comment.