diff --git a/INCLUDE/deggl b/INCLUDE/deggl old mode 100644 new mode 100755 index 2aefe97..bd6f07f Binary files a/INCLUDE/deggl and b/INCLUDE/deggl differ diff --git a/INCLUDE/generate.sh b/INCLUDE/generate.sh old mode 100644 new mode 100755 index 6309522..87ea9b1 --- a/INCLUDE/generate.sh +++ b/INCLUDE/generate.sh @@ -1,8 +1,8 @@ # Build 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 +# For simplicity, we'll test without intrisics enabled 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