We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 287fc11 commit 3a22e54Copy full SHA for 3a22e54
1 file changed
selfcheck.sh
@@ -41,14 +41,13 @@ if [ "$cxx_type" = "g++" ] || [ "$cxx_type" = "g++.exe" ]; then
41
inc="$inc -I$line"
42
done <<< "$($CXX -x c++ -v -c -S - 2>&1 < /dev/null | grep -e'^ [/A-Z]' | grep -v /cc1plus)"
43
elif [ "$cxx_type" = "clang" ]; then
44
- cat C:/msys64/clang64/include/c++/v1/__mbstate_t.h
45
# libstdc++
46
defs=
47
defs="$defs -D__x86_64__"
48
defs="$defs -D__STDC_HOSTED__"
49
defs="$defs -D__CHAR_BIT__=8"
50
defs="$defs -D__BYTE_ORDER__=1234"
51
- if [ "${MSYSTEM}" = "MINGW32" ] || [ "${MSYSTEM}" = "MINGW64" ]; then
+ if [ "${MSYSTEM}" = "MINGW32" ] || [ "${MSYSTEM}" = "MINGW64" ] || [ "${MSYSTEM}" = "CLANG64" ]; then
52
defs="$defs -D_WIN32"
53
fi
54
defs="$defs -D__has_builtin(x)=(1)"
0 commit comments