From ebf0c77c10c0a8109f29ffcf7df8b7df7fb1cafc Mon Sep 17 00:00:00 2001 From: Jerry Sievert Date: Mon, 29 Jan 2024 08:04:56 -0800 Subject: [PATCH] fix aarch64 compilation --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0f02520..9ba2b1a 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ ifeq ($(UNAME_S),arm64) PG_CPPFLAGS += -stdlib=libc++ -DHAVE_NEON_INSTRUCTIONS=1 endif ifeq ($(UNAME_S),aarch64) - PG_CPPFLAGS += -stdlib=libc++ -DHAVE_NEON_INSTRUCTIONS=1 + PG_CPPFLAGS += -DHAVE_NEON_INSTRUCTIONS=1 endif ifeq ($(UNAME_S),x86_64) SHLIB_LINK += -lrt -std=c++17 -msse4.2