Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Fix issue #121 #125

Merged
merged 4 commits into from
Oct 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/PlatformNames.jl
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,8 @@ function detect_libstdcxx_abi()

# Full list available here: https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html
if max_version < v"3.4.18"
error("libstdc++ ABI version '$max_version' too small; please build Julia with GCC >= 4.8.5")
@warn "Cannot make sense of autodetected libstdc++ ABI version ('$max_version')"
return :gcc_any
elseif max_version < v"3.4.23"
# If we aren't up to 7.1.0, then we fall all the way back to 4.8.5
return :gcc4
Expand Down