-
Notifications
You must be signed in to change notification settings - Fork 154
Labels
Description
From CMakeCache.txt:
//CXX compiler
CMAKE_CXX_COMPILER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/g++
From build log:
Effective ufid: opt_64_cpp17
Using build profile: gcc-15.0.0
...
[11/1622] Building CXX object groups/bsl/CMakeFiles/bsla-iface.dir/bsla/bsla_maybeunused.cpp.o
clang: warning: -ld_classic: 'linker' input unused [-Wunused-command-line-argument]
warning: unknown warning option '-Wlogical-op'; did you mean '-Wlong-long'? [-Wunknown-warning-option]
1 warning generated.
Note that clang
is used and it complains about -Wlogical-op
that is not supported in clang
(this is a gcc related flag)