Skip to content
Snippets Groups Projects
Commit 77e946aa authored by Carlo Landmeter's avatar Carlo Landmeter
Browse files
parent 87380093
No related branches found
No related tags found
No related merge requests found
......@@ -117,6 +117,11 @@ build() {
export CFLAGS="${CFLAGS/-Os/-O2}"
export CPPFLAGS="${CPPFLAGS/-Os/-O2}"
# when disable-spinlocks is no longer required - check postgresql-bdr package
case $CARCH in
riscv64) local _configure=--disable-spinlocks;;
esac
./configure \
--build=$CBUILD \
--host=$CHOST \
......@@ -132,7 +137,8 @@ build() {
--with-perl \
--with-python \
--with-icu \
--with-tcl
--with-tcl \
$_configure
make world
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment