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 issue is with src/ansi-c/library-check.sh. There are (at least) two issues:
MSVC doesn't understand the flags passed to $CC. It thinks that -Werror is an argument to -Wall. Don't ask.
The $CC variables should be quoted in that script, in case the path to the compiler contains spaces. Otherwise the shell tries to run a compiler called C:\Program.
Fix on the way shortly.
The text was updated successfully, but these errors were encountered:
src/ansi-c/library_check.sh does not work under MSVC, as that compiler
uses completely different flags. This commit removes the file generated
by that script---library-check.stamp---from the dependency graph under
cmake.
This commit fixesdiffblue#4295.
The issue is with
src/ansi-c/library-check.sh
. There are (at least) two issues:$CC
. It thinks that-Werror
is an argument to-Wall
. Don't ask.$CC
variables should be quoted in that script, in case the path to the compiler contains spaces. Otherwise the shell tries to run a compiler calledC:\Program
.Fix on the way shortly.
The text was updated successfully, but these errors were encountered: