Skip to content

Commit cafdc8a

Browse files
committed
cmake: Upgrade to LLVM 7.1
1 parent b21a6ca commit cafdc8a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ script:
113113
after_success:
114114
# Create tarball for deployment
115115
- if [[ "${BUILD_EXTERNAL}" == "1" && "${SHARED_LIBS}" == "ON" && "${repo_token}" != "" ]]; then
116-
export TAG=7.0.1-1;
116+
export TAG=7.1.0-1;
117117
export TARBALL=SPIRV-LLVM-Translator-${TAG}-${TRAVIS_OS_NAME}-${BUILD_TYPE}.zip;
118118
cd ../install && find . -print | zip -@ ${TARBALL};
119119
fi
@@ -132,6 +132,7 @@ deploy:
132132
branch: llvm_release_70
133133
condition: ${BUILD_EXTERNAL} == 1 && ${SHARED_LIBS} == ON && ${repo_token}
134134
file: ${TARBALL}
135+
name: Binaries linked against LLVM 7.1.0
135136
skip_cleanup: true
136137
overwrite: false
137138
prerelease: false

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
2222
)
2323
endif(LLVM_INCLUDE_TESTS)
2424

25-
find_package(LLVM 7.0.0 REQUIRED
25+
find_package(LLVM 7.1 REQUIRED
2626
COMPONENTS
2727
Analysis
2828
BitReader

0 commit comments

Comments
 (0)