We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5705c30 commit 5789b4dCopy full SHA for 5789b4d
.travis.yml
@@ -18,7 +18,7 @@ matrix:
18
sudo: required
19
dist: trusty
20
env:
21
- - LLVM_API_VERSION=4.0
+ - LLVM_API_VERSION=5.0
22
before_install:
23
- export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:"${PKG_CONFIG_PATH}"
24
- wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
utils/make-pkgconfig.swift
@@ -68,6 +68,7 @@ func makeFile() throws {
68
69
let versionStr = run(llvmConfig, args: ["--version"])!
70
.replacing(charactersIn: .newlines, with: "")
71
+ .replacingOccurrences(of: "svn", with: "")
72
let components = versionStr.components(separatedBy: ".")
73
.flatMap { Int($0) }
74
0 commit comments