diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-10-20 22:22:19 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-21 16:36:40 +0200 |
commit | f02c60cd2f805cabbcd47c6604b1c9cf9ffebf78 (patch) | |
tree | 8c3783a5c024308f5a0b4ca24d9f24f24c93aa49 | |
parent | 49b9ec7d1c87c63873806bbe8b494d3b1ca99fe1 (diff) | |
download | buildroot-f02c60cd2f805cabbcd47c6604b1c9cf9ffebf78.tar.gz buildroot-f02c60cd2f805cabbcd47c6604b1c9cf9ffebf78.zip |
postgresql: disable spinlock support for riscv64
Fixes:
- http://autobuild.buildroot.org/results/deebc4b8f615e1216279d6587e91f5654da2ad68
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/postgresql/postgresql.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk index 1e8a5e5934..2754526684 100644 --- a/package/postgresql/postgresql.mk +++ b/package/postgresql/postgresql.mk @@ -34,7 +34,7 @@ ifneq ($(BR2_TOOLCHAIN_HAS_THREADS),y) POSTGRESQL_CONF_OPTS += --disable-thread-safety endif -ifeq ($(BR2_arcle)$(BR2_arceb)$(BR2_microblazeel)$(BR2_microblazebe)$(BR2_or1k)$(BR2_nios2)$(BR2_xtensa),y) +ifeq ($(BR2_arcle)$(BR2_arceb)$(BR2_microblazeel)$(BR2_microblazebe)$(BR2_or1k)$(BR2_nios2)$(BR2_riscv)$(BR2_xtensa),y) POSTGRESQL_CONF_OPTS += --disable-spinlocks endif |