You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The choose_shards function is rather complicated. Among its issues it computes the GCC_build for the host and the target together, which for example fails for
GCC v4.8 is chosen for both of them, when it should choose v4.8 for the target and v5 for the host (with #82 we always require C++11 string ABI for the host). The same happens for the target Platform("x86_64", "linux"; libc="glibc", cxxstring_abi="cxx03") and I have an even harder time to understand why, since the two platforms are strictly speaking different (maybe the same version of GCC is always chosen?). See also #82 (comment), which is what we want to eventually achieve
The text was updated successfully, but these errors were encountered:
The
choose_shards
function is rather complicated. Among its issues it computes theGCC_build
for the host and the target together, which for example fails forGCC v4.8 is chosen for both of them, when it should choose v4.8 for the target and v5 for the host (with #82 we always require C++11 string ABI for the host). The same happens for the target
Platform("x86_64", "linux"; libc="glibc", cxxstring_abi="cxx03")
and I have an even harder time to understand why, since the two platforms are strictly speaking different (maybe the same version of GCC is always chosen?). See also #82 (comment), which is what we want to eventually achieveThe text was updated successfully, but these errors were encountered: