From 3ebe43eb75806990a402aafd5858de615d5c1cca Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Thu, 2 Jun 2022 01:26:45 +0100 Subject: Solve the error logging situation --- compile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'compile') diff --git a/compile b/compile index d921b78..6948527 100755 --- a/compile +++ b/compile @@ -28,9 +28,12 @@ fi objs= cc() { objs="$objs .build/${1%%.c}.o" + _mn=" -DMODULE_NAME=${1%%.c}" + # ugly annoying special case + if [ "$_mn" = " -DMODULE_NAME=con_" ]; then _mn=" -DMODULE_NAME=con" + elif [ "$_mn" = "-DMODULE_NAME=sst" ]; then _mn=; fi $CC -m32 -c -flto -fpic $cflags $warnings -I.build/include \ - -D_FILE_OFFSET_BITS=64 -DFILE_BASENAME="${1%%.c}" \ - -o ".build/${1%%.c}.o" "src/$1" + -D_FILE_OFFSET_BITS=64$_mn -o ".build/${1%%.c}.o" "src/$1" } ld() { @@ -44,6 +47,7 @@ src="\ demorec.c engineapi.c ent.c + errmsg.c extmalloc.c fixes.c fov.c -- cgit v1.2.3