From: Alvaro Herrera Date: Wed, 13 Feb 2019 20:38:21 +0000 (-0300) Subject: Add -mpopcnt to all compiles of pg_bitutils.c X-Git-Tag: REL_12_BETA1~746 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0b4663c23b7;p=thirdparty%2Fpostgresql.git Add -mpopcnt to all compiles of pg_bitutils.c The way this makefile works, we need to specify it three times. --- diff --git a/src/port/Makefile b/src/port/Makefile index 94ccece3711..2da73260a13 100644 --- a/src/port/Makefile +++ b/src/port/Makefile @@ -80,6 +80,8 @@ pg_crc32c_armv8_srv.o: CFLAGS+=$(CFLAGS_ARMV8_CRC32C) # pg_bitutils.c needs CFLAGS_POPCNT pg_bitutils.o: CFLAGS+=$(CFLAGS_POPCNT) +pg_bitutils_shlib.o: CFLAGS+=$(CFLAGS_POPCNT) +pg_bitutils_srv.o: CFLAGS+=$(CFLAGS_POPCNT) # # Shared library versions of object files