mirror of
https://github.com/pgvector/pgvector.git
synced 2026-07-12 15:46:54 +08:00
Fixed compilation error with FreeBSD ARM
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
## 0.7.3 (unreleased)
|
## 0.7.3 (unreleased)
|
||||||
|
|
||||||
|
- Fixed compilation error with FreeBSD ARM
|
||||||
- Fixed compilation warning with MSVC and Postgres 16
|
- Fixed compilation warning with MSVC and Postgres 16
|
||||||
|
|
||||||
## 0.7.2 (2024-06-11)
|
## 0.7.2 (2024-06-11)
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
/* F16C has better performance than _Float16 (on x86-64) */
|
/* F16C has better performance than _Float16 (on x86-64) */
|
||||||
#if defined(__F16C__)
|
#if defined(__F16C__)
|
||||||
#define F16C_SUPPORT
|
#define F16C_SUPPORT
|
||||||
#elif defined(__FLT16_MAX__) && !defined(HALFVEC_DISPATCH)
|
#elif defined(__FLT16_MAX__) && !defined(HALFVEC_DISPATCH) && !defined(__FreeBSD__)
|
||||||
#define FLT16_SUPPORT
|
#define FLT16_SUPPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user