Skip to content

Commit a1ae715

Browse files
committed
fix: do not apply bindgen fix for version 1.5.4
pg_graphql 1.5.4 uses pgrx 0.11.3 which fixed the ABI issues on aarch64-linux.
1 parent de0039e commit a1ae715

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nix/ext/pg_graphql/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ let
9999
# Fix bindgen error on aarch64-linux for versions using pgrx with bindgen 0.68.1
100100
# This affects pgrx 0.6.1 through 0.11.2 which have issues with ARM NEON vector ABI
101101
# We apply the fix to all versions up to 1.5.1 (last version before 1.5.4 which uses 0.11.2)
102-
builtins.compareVersions "1.5.4" version >= 0
102+
builtins.compareVersions "1.5.4" version > 0
103103
)
104104
{
105105
# Fix bindgen error on aarch64-linux by using an older version of clang

0 commit comments

Comments
 (0)