Skip to content

Commit f4002c8

Browse files
authored
Merge pull request swiftlang#19735 from kevints/SR-8925
2 parents c8e4c92 + f1740bd commit f4002c8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/Ubuntu14.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
## Upgrade Clang
44
You'll need to upgrade your clang compiler for C++14 support and create a symlink. The minimum required version of clang may change, and may not be available on Ubuntu 14.04 in the future.
55
```bash
6-
sudo apt-get install clang-3.6
7-
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.6 100
8-
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.6 100
6+
sudo apt-get install clang-3.9
7+
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.9 100
8+
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.9 100
9+
sudo update-alternatives --set clang /usr/bin/clang-3.9
10+
sudo update-alternatives --set clang++ /usr/bin/clang++-3.9
911
```
1012

1113
## Upgrade CMake

0 commit comments

Comments
 (0)