From 5f58433f02971be34a6594be883be58b8c88bf86 Mon Sep 17 00:00:00 2001 From: Eric-Paul Ickhorn Date: Wed, 29 Nov 2023 22:15:06 +0100 Subject: [PATCH] Fixed the checks' include path to the utilities in the build.bash --- build.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.bash b/build.bash index a02c738..45c35ad 100755 --- a/build.bash +++ b/build.bash @@ -14,7 +14,7 @@ function build_checks() { fi cd $check_folder - gcc src/*.c $INVOCATION_PATH/.build/libparcel.a -o check.elf -I $INVOCATION_PATH/core-parser/inc/ + gcc src/*.c $INVOCATION_PATH/.build/libparcel.a -o check.elf -I $INVOCATION_PATH/core-parser/inc/ -I $INVOCATION_PATH/utility/exports/ cd .. done }