-
-
Notifications
You must be signed in to change notification settings - Fork 968
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix iconv and clang version detection on OSX #6917
Conversation
5a714af
to
cfc9fde
Compare
cfc9fde
to
c53a7d9
Compare
In the interests of actually fixing #6880, would it be reasonable to just "fake" the clang version if it's on OSX? arbitrarily set it to 5.0 or something |
c53a7d9
to
a72729d
Compare
Given recent additions (C++11 enum types), I figure it is better to just force C++11 globally for all compilers. A bit of a stop-gap measure until CMake happens, but it does make it work... |
Works on macOS 10.13.6 with Clang "Apple LLVM version 10.0.0 (clang-1000.11.45.5)" |
a72729d
to
30e05e5
Compare
Also works for me on Mac OS X 10.11.6 with Clang "Apple LLVM version 8.0.0 (clang-800.0.42.1). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't see anything that looks obviously wrong to me; tested on OS X 10.11 with Apple LLVM 8 and works for me.
Oddly, this does not seem to cause problems with the macOS CI tests being run right now, even with no extra CXXFLAGS. |
30e05e5
to
7ed3153
Compare
With this PR applied: |
Yeah, this was known. It's unfortunate, but there wasn't really any other way around it, without hugely complicating everything. We decided it was better to have the version a bit wrong (and to force c++11) and not worry about it until someone rewrites the buildsystem in cmake or similar |
Rationale:
Under OSX, clang is actually all compilers -
cc
,gcc
&clang
. We already grep the output of --version to get thatgcc
might actually beclang
, but the version number is hidden. For reasons best known to themselves, Apple have decided to completely remove the "actual"clang
version number and use their own.This screws with the
CFLAGS
somewhat, as several of them are specific to compiler versions.It turns out that
gcc -v
under OSX actually outputswhich isn't exactly what we were expecting. Coupled with the fact that the clang "version number" is determined by taking the first 2 digits from the first line of output, and we get version... 10
This is solved by only taking the lines containing "version", which seems to be constant between all variants. We then get version "91", which is still inaccurate, but actually works for our purposes
As for iconv, for some reason on @andythenorth's system
iconv.h
is only in/usr/local/Cellar/libiconv/1.15/include/iconv.h
, and the configure script only searches within/usr/include
&/usr/local/include
. This seems fairly arbitrary anyway, so some magic involving the compiler output (which seems to be consistent between gcc & clang) and awk gets us a list of search paths to ...search within