https://github.com/Kitware/CMake
Revision 542d52f95e3540953113fc66dc7a7958b9c184de authored by Gregor Jasny on 31 October 2016, 09:25:38 UTC, committed by Brad King on 01 November 2016, 13:31:08 UTC
Revert commit v3.7.0-rc1~48^2 (Xcode: Convert maybe unversioned OSX
sysroot into versioned SDK path, 2016-09-25).  The replacement of
`else()` with `if(CMAKE_OSX_SYSROOT)` defeats the prior handling of
`if("x${CMAKE_OSX_SYSROOT}" MATCHES "/")`. This causes the combination

    -DCMAKE_OSX_DEPLOYMENT_TARGET:STRING="" -DCMAKE_OSX_SYSROOT:STRING=/

to not be honored and `-isysroot` to be emitted as a compiler flag
universally.  We will need another solution to the problem the
now-reverted commit was meant to address.

Closes: #16394
1 parent 876da11
Raw File
Tip revision: 542d52f95e3540953113fc66dc7a7958b9c184de authored by Gregor Jasny on 31 October 2016, 09:25:38 UTC
Revert "Xcode: Convert maybe unversioned OSX sysroot into versioned SDK path"
Tip revision: 542d52f
.gitattributes
.gitattributes   export-ignore
.hooks*          export-ignore

bootstrap        crlf=input
configure        crlf=input
*.[1-9]          crlf=input
*.sh             crlf=input
*.sh.in          crlf=input

*.bat           -crlf
*.bat.in        -crlf
*.dsp           -crlf
*.dsw           -crlf
*.pfx           -crlf
*.png           -crlf
*.sln           -crlf
*.vcproj        -crlf

*.c              whitespace=tab-in-indent
*.h              whitespace=tab-in-indent
*.cxx            whitespace=tab-in-indent
*.txt            whitespace=tab-in-indent
*.cmake          whitespace=tab-in-indent

*.rst            whitespace=tab-in-indent conflict-marker-size=79
back to top