Fixed compilation error on PowerPC - closes #117

Co-authored-by: Ilya <badt@appar.at>
This commit is contained in:
Andrew Kane
2023-05-17 16:59:22 -07:00
parent e97ef5fbac
commit fa401b7883
2 changed files with 6 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
## 0.4.3 (unreleased)
- Fixed compilation error when `float8` is pass by reference
- Fixed compilation error on PowerPC
- Fixed segmentation fault with index creation on i386
## 0.4.2 (2023-05-13)

View File

@@ -19,6 +19,11 @@ ifeq ($(shell uname -s), Darwin)
endif
endif
# PowerPC doesn't support -march=native
ifneq ($(filter ppc64%, $(shell uname -m)), )
OPTFLAGS =
endif
# For auto-vectorization:
# - GCC (needs -ftree-vectorize OR -O3) - https://gcc.gnu.org/projects/tree-ssa/vectorization.html
# - Clang (could use pragma instead) - https://llvm.org/docs/Vectorizers.html