Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
gcc6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
juan-pablo-vielma committed Nov 16, 2018
1 parent d5068c1 commit 9f9ff92
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,13 @@ make install
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = [
Linux(:x86_64, libc=:glibc),
Linux(:aarch64, libc=:glibc),
Linux(:armv7l, libc=:glibc, call_abi=:eabihf),
MacOS(:x86_64),
Windows(:i686),
Windows(:x86_64)
Linux(:i686, libc=:glibc),
Linux(:x86_64, libc=:glibc),
Linux(:aarch64, libc=:glibc),
Linux(:armv7l, libc=:glibc, call_abi=:eabihf),
MacOS(:x86_64),
Windows(:i686),
Windows(:x86_64)
]
platforms = expand_gcc_versions(platforms)
# To fix gcc4 bug in Windows
Expand Down

0 comments on commit 9f9ff92

Please sign in to comment.