summaryrefslogtreecommitdiff
path: root/platform/linux/README.md
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-29 09:57:21 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-29 09:57:21 -0700
commitc1ad3214858f6e8a852b2346ad69947b26e43172 (patch)
treed5fc6a4e05d3c20d2c0d0105939951faa8d3c761 /platform/linux/README.md
parentc86f558e9d608ac19ca5b26ea8f72e2dc43c07c0 (diff)
downloadqtlocation-mapboxgl-c1ad3214858f6e8a852b2346ad69947b26e43172.tar.gz
[linux] Build with GCC 5 (#4901)
* [linux] Build with GCC 5 * [build] -fabi-version=0 is the default for GCC 5
Diffstat (limited to 'platform/linux/README.md')
-rw-r--r--platform/linux/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/linux/README.md b/platform/linux/README.md
index 910edcb9a6..bb05284609 100644
--- a/platform/linux/README.md
+++ b/platform/linux/README.md
@@ -8,12 +8,12 @@ This process gives you a Linux desktop app built on a Linux host system.
### Build
-Install GCC 4.9+ if you are running Ubuntu 14.04 or older. Alternatively, you can also use [Clang 3.5+](http://llvm.org/apt/).
+Install GCC 5+ if you are running Ubuntu 14.04 or older. Alternatively, you can also use [Clang 3.5+](http://llvm.org/apt/).
sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test
sudo apt-get update
- sudo apt-get install gcc-4.9 g++-4.9
- export CXX=g++-4.9
+ sudo apt-get install gcc-5 g++-5
+ export CXX=g++-5
Ensure you have git and other build essentials: