Always build nodes with ovni

This commit is contained in:
Rodrigo Arias 2023-05-30 16:14:04 +02:00
parent 1da216bab5
commit 11e897c10a

View File

@ -13,8 +13,7 @@
, boost , boost
, autoreconfHook , autoreconfHook
, jemalloc , jemalloc
, enableOvni ? false , ovni
, ovni ? null
, nosv , nosv
, useGit ? false , useGit ? false
, gitUrl ? "ssh://git@gitlab-internal.bsc.es/nos-v/nodes.git" , gitUrl ? "ssh://git@gitlab-internal.bsc.es/nos-v/nodes.git"
@ -56,8 +55,8 @@ in
configureFlags = [ configureFlags = [
"--with-jemalloc=${jemalloc}" "--with-jemalloc=${jemalloc}"
"--with-nosv=${nosv}" "--with-nosv=${nosv}"
] ++ "--with-ovni=${ovni}"
(optional enableOvni "--with-ovni=${ovni}"); ];
# The "bindnow" flags are incompatible with ifunc resolution mechanism. We # The "bindnow" flags are incompatible with ifunc resolution mechanism. We
# disable all by default, which includes bindnow. # disable all by default, which includes bindnow.
@ -75,6 +74,6 @@ in
papi papi
jemalloc jemalloc
nosv nosv
] ++ ovni
(optional enableOvni ovni); ];
} }