chore: init

This commit is contained in:
2025-09-19 15:36:37 +02:00
commit 9d707a253a
2190 changed files with 17598 additions and 0 deletions

25
wcompileIntel.sh Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
#
# Mandatory : use this script from the root of your workspace
#
set -u
# clean
cd ./BUILDER
cbicc intel cleanAll
cd -
# compile all
readonly WORKSPACE_PATH=$(pwd)
readonly PATH_SCRIPT=./BUILDER/makefile/private/script/workspace_auto
pushd . >/dev/null
cd $PATH_SCRIPT
./workspace_compile.sh $WORKSPACE_PATH intellinux
popd >/dev/null
# check
ls ./RELEASE/bin
sleep 9999999s