Updated build script and deggl

This commit is contained in:
Leonetienne 2022-02-08 10:47:03 +01:00
parent 412e497a99
commit c86380f8ff
2 changed files with 3 additions and 3 deletions

BIN
INCLUDE/deggl Normal file → Executable file

Binary file not shown.

6
INCLUDE/generate.sh Normal file → Executable file
View File

@ -1,8 +1,8 @@
# Build the include files # Build the include files
echo "Building the include files..." echo "Building the include files..."
deggl -i ../Eule/*.cpp -o Eule ./deggl -i ../Eule/*.cpp -o Eule
# Verify that they compile cleanly # Verify that they compile cleanly
# For simplicity, we'll test without intrisics enabled
echo "Verifying that they compile" echo "Verifying that they compile"
g++ Eule.cpp -c -S -o - -Wall -Wextra -Wpedantic -mavx > /dev/null g++ Eule.cpp -c -S -std=c++17 -o - -Wall -Wextra -Wpedantic -mavx -D _EULE_NO_INTRINSICS_ > /dev/null