Revision 601fe84bd175507b164d9a4a5ad938ed8ec3f7ec authored by Brad King on 29 July 2019, 19:06:27 UTC, committed by Brad King on 29 July 2019, 19:24:29 UTC
The check added in commit b06f4c8a74 (Swift: disallow WIN32_EXECUTABLE
properties, 2019-05-31, v3.15.0-rc1~9^2) makes sense only for
executables because the `WIN32_EXECUTABLE` property is defined only for
them.  Running the check on other target types, particularly those that
do not link such as INTERFACE libraries, violates internal assumptions.
In particular, `GetLinkerLanguage` should not be called on such targets.

Fixes: #19528
1 parent f43a7d7
Raw File
configure
#!/bin/sh
cmake_source_dir=`cd "\`dirname \"$0\"\`";pwd`
exec "${cmake_source_dir}/bootstrap" "$@"
back to top