mirror of
https://github.com/pgvector/pgvector.git
synced 2026-06-06 05:51:21 +08:00
Fixed undefined symbol error with GCC 8 - fixes #538
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
## 0.7.1 (unreleased)
|
||||
|
||||
- Fixed `undefined symbol` error with GCC 8
|
||||
|
||||
## 0.7.0 (2024-04-29)
|
||||
|
||||
- Added `halfvec` type
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
/* TODO Move to better place */
|
||||
#ifndef DISABLE_DISPATCH
|
||||
/* Only enable for more recent compilers to keep build process simple */
|
||||
#if defined(__x86_64__) && defined(__GNUC__) && __GNUC__ >= 8
|
||||
#if defined(__x86_64__) && defined(__GNUC__) && __GNUC__ >= 9
|
||||
#define USE_DISPATCH
|
||||
#elif defined(__x86_64__) && defined(__clang_major__) && __clang_major__ >= 7
|
||||
#define USE_DISPATCH
|
||||
|
||||
Reference in New Issue
Block a user