https://github.com/JuliaLang/julia
Raw File
Tip revision: a05780c44c80757be67223db30d0988aefab0944 authored by Keno Fischer on 06 August 2018, 23:57:55 UTC
WIP: Fix broadcast deprecations
Tip revision: a05780c
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