From: falcovorbis <fal...@us...> - 2024-10-23 11:45:45
|
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 8e49da92f2824f43414078a021fd82f78ff26f07 (commit) from 63ee447e3b4bcd2b48e15ed289e1c82a80145ff7 (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 8e49da92f2824f43414078a021fd82f78ff26f07 Author: Cypress <140...@us...> Date: Wed Oct 23 11:44:44 2024 +0000 Consistency fix (#832) Added periods to all commented sentences. ----------------------------------------------------------------------- Summary of changes: environ_base.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/environ_base.sh b/environ_base.sh index a4d98cf0..a6fada44 100644 --- a/environ_base.sh +++ b/environ_base.sh @@ -11,32 +11,32 @@ if [ -z "${KOS_PORTS}" ] ; then export KOS_PORTS="${KOS_BASE}/../kos-ports" fi -# Arch kernel folder +# Arch kernel folder. export KOS_ARCH_DIR="${KOS_BASE}/kernel/arch/${KOS_ARCH}" -# Pull in the arch environ file +# Pull in the arch environ file. . ${KOS_BASE}/environ_${KOS_ARCH}.sh -# Add the compiler bins dir to the path if it is not already +# Add the compiler bins dir to the path if it is not already. if [[ ":$PATH:" != *":${KOS_CC_BASE}/bin:"* ]]; then export PATH="${PATH}:${KOS_CC_BASE}/bin" fi -# Add the build wrappers dir to the path if it is not already +# Add the build wrappers dir to the path if it is not already. if [[ ":$PATH:" != *":${KOS_BASE}/utils/build_wrappers:"* ]]; then export PATH="${PATH}:${KOS_BASE}/utils/build_wrappers" fi -# Our includes +# Our includes. export KOS_INC_PATHS="${KOS_INC_PATHS} -I${KOS_BASE}/include \ -I${KOS_BASE}/kernel/arch/${KOS_ARCH}/include -I${KOS_BASE}/addons/include \ -I${KOS_PORTS}/include" -# "System" libraries +# "System" libraries. export KOS_LIB_PATHS="-L${KOS_BASE}/lib/${KOS_ARCH} -L${KOS_BASE}/addons/lib/${KOS_ARCH} -L${KOS_PORTS}/lib" export KOS_LIBS="-Wl,--start-group -lkallisti -lm -lc -lgcc -Wl,--end-group" -# Main arch compiler paths +# Main arch compiler paths. export KOS_CC="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-gcc" export KOS_CCPLUS="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-g++" export KOS_AS="${KOS_CC_BASE}/bin/${KOS_CC_PREFIX}-as" @@ -50,7 +50,7 @@ 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}" -# Which standards modes we want to compile for +# Which standards modes we want to compile for. # Note that this only covers KOS itself, not necessarily anything else compiled # with kos-cc or kos-c++. export KOS_CSTD="-std=gnu17" @@ -66,7 +66,7 @@ case $KOS_GCCVER in export KOS_LDFLAGS="${KOS_CFLAGS} ${KOS_LDFLAGS} ${KOS_LD_SCRIPT} -nodefaultlibs ${KOS_LIB_PATHS}" ;; esac -# Some extra vars based on architecture +# Some extra vars based on architecture. case $KOS_GCCVER in 2* | 3*) export KOS_START="${KOS_ARCH_DIR}/kernel/startup.o" ;; hooks/post-receive -- A pseudo Operating System for the Dreamcast. |