https://github.com/JuliaLang/julia
Raw File
Tip revision: 7ef70576a4cb186e154b734854c1a597f50c25b6 authored by Rafael Fourquet on 11 June 2020, 15:01:46 UTC
add push(::IO, pair...) and push(::ImmutableDict, pair...)
Tip revision: 7ef7057
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