From: falcovorbis <fal...@us...> - 2024-10-05 14:17:53
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 33b84c21775d2fc1431558fbc9bc6c0294d93d72 (commit) from 0482d86c883088f482cfa86855efe0c390a93a3b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 33b84c21775d2fc1431558fbc9bc6c0294d93d72 Author: Gleb Mazovetskiy <gle...@gm...> Date: Sat Oct 5 15:17:22 2024 +0100 environ_base.sh: Remove `-fno-operator-names` flag (#785) This flag disabled support for `and/or/not` operator aliases, which are part of the C++ standard since its very first version (C++98) and are used in some open-source libraries, such as https://github.com/realnc/SDL_audiolib. ----------------------------------------------------------------------- Summary of changes: environ_base.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environ_base.sh b/environ_base.sh index bf754d4b..a4d98cf0 100644 --- a/environ_base.sh +++ b/environ_base.sh @@ -48,7 +48,7 @@ export KOS_LD="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-ld" export KOS_RANLIB="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-gcc-ranlib" export KOS_STRIP="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-strip" export KOS_CFLAGS="${KOS_CFLAGS} ${KOS_INC_PATHS} -D_arch_${KOS_ARCH} -D_arch_sub_${KOS_SUBARCH} -Wall -g" -export KOS_CPPFLAGS="${KOS_CPPFLAGS} ${KOS_INC_PATHS_CPP} -fno-operator-names" +export KOS_CPPFLAGS="${KOS_CPPFLAGS} ${KOS_INC_PATHS_CPP}" # Which standards modes we want to compile for # Note that this only covers KOS itself, not necessarily anything else compiled hooks/post-receive -- A pseudo Operating System for the Dreamcast. |