https://github.com/JuliaLang/julia
Raw File
Tip revision: 96786e22ccabfdafd073122abb1fb69cea921e17 authored by Alex Arslan on 01 August 2020, 23:44:58 UTC
Set VERSION to 1.5.0 (#36876)
Tip revision: 96786e2
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