chore: add compilation scripts for x64

This commit is contained in:
Jan 2025-04-06 12:30:20 +02:00
parent 481d301545
commit 37d52ae8da
No known key found for this signature in database
GPG Key ID: 44B581F78FF5C57C
5 changed files with 18 additions and 3 deletions

View File

@ -4,4 +4,6 @@
cd "$(dirname "$0")/.." || exit 2
make -C build -j$(nproc) config=debug_x86 clean
make -C build -j$(nproc) config=release_x86 clean
make -C build -j$(nproc) config=release_x86 clean
make -C build -j$(nproc) config=debug_x64 clean
make -C build -j$(nproc) config=release_x64 clean

6
scripts/make-debug-x64.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# Go to repository root
cd "$(dirname "$0")/.." || exit 2
make -C build -j$(nproc) config=debug_x64 all

View File

@ -3,4 +3,4 @@
# Go to repository root
cd "$(dirname "$0")/.." || exit 2
make -C build -j$(nproc) config=debug_x86 all
make -C build -j$(nproc) config=debug_x86 all

7
scripts/make-release-x64.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
# Go to repository root
cd "$(dirname "$0")/.." || exit 2
echo "Start building with $(nproc) threads"
make -C build -j$(nproc) config=release_x64 all

View File

@ -4,4 +4,4 @@
cd "$(dirname "$0")/.." || exit 2
echo "Start building with $(nproc) threads"
make -C build -j$(nproc) config=release_x86 all
make -C build -j$(nproc) config=release_x86 all