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 creation of the CFLAGS as found in src/build_options.cmake is wrong. Since compliers often language specific flags (for example -std=c++98 or -std=c++11). Trying test builds with a language specific flag (-std=c++98) will cause clang to throw an error when attempting to compile src/voglcore/rmalloc.c and other pieces of C code.
Note: gcc just gives a warning
The text was updated successfully, but these errors were encountered:
The creation of the CFLAGS as found in
src/build_options.cmake
is wrong. Since compliers often language specific flags (for example-std=c++98
or-std=c++11
). Trying test builds with a language specific flag (-std=c++98
) will cause clang to throw an error when attempting to compilesrc/voglcore/rmalloc.c
and other pieces ofC
code.Note:
gcc just gives a warning
The text was updated successfully, but these errors were encountered: