https://github.com/JuliaLang/julia
Raw File
Tip revision: 24f033c9517cd186448acc3bededa1a64eaad09f authored by Kristoffer Carlsson on 26 June 2020, 20:13:25 UTC
Set VERSION to 1.5.0-rc1 (#36445)
Tip revision: 24f033c
NATIVE.cmake
# native toolchain file to fix llvm cross-compilation finickiness
# ref http://lists.llvm.org/pipermail/llvm-dev/2016-February/095366.html
set(CMAKE_C_COMPILER cc)
set(CMAKE_CXX_COMPILER c++)
back to top