2022-01-20 22:25:12 +01:00
|
|
|
# Build the include files
|
|
|
|
echo "Building the include files..."
|
2022-02-08 10:47:03 +01:00
|
|
|
./deggl -i ../Eule/*.cpp -o Eule
|
2022-01-20 22:25:12 +01:00
|
|
|
|
|
|
|
# Verify that they compile cleanly
|
2022-02-08 10:47:03 +01:00
|
|
|
# For simplicity, we'll test without intrisics enabled
|
2022-01-20 22:25:12 +01:00
|
|
|
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
|