Eule/INCLUDE/generate.sh

9 lines
324 B
Bash
Raw Normal View History

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