Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove libbitcoin-consensus from build. #315

Merged
merged 1 commit into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions generate4.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1818,7 +1818,7 @@
<package library="bitcoin-node" description="Bitcoin Full Node" url="https://github.com/libbitcoin/libbitcoin-node" />

<configure>
<option type="with" name="consensus" default="yes" define="WITH_CONSENSUS" description="Link libbitcoin-consensus and use for consensus checks." />
<!--<option type="with" name="consensus" default="yes" define="WITH_CONSENSUS" description="Link libbitcoin-consensus and use for consensus checks." />-->
<option type="with" name="bash-completiondir" default="no" example="[=DIR]" unprefixed="true" substitute="true" conditional="true" description="Install bash completion support, optionally specifying the directory. This option may require elevated permissions." />
<option type="with" name="pkgconfigdir" default="${libdir}/pkgconfig" example="=DIR" unprefixed="true" substitute="true" description="Path to pkgconfig directory." data_type="path" />
<option type="with" name="tests" default="yes" conditional="true" description="Compile with unit tests." />
Expand All @@ -1830,7 +1830,7 @@
<dependency name="boost_unit_test_framework" option="tests" />
<dependency name="bash-completion" version="2.0.0" option="bash-completiondir" unprefixed="true" extract="completionsdir" default="${datadir}/bash-completion/completions" />
<dependency name="bitcoin-database" version="4.0.0" />
<dependency name="bitcoin-consensus" version="4.0.0" option="consensus" />
<!--<dependency name="bitcoin-consensus" version="4.0.0" option="consensus" />-->
<dependency name="bitcoin-network" version="4.0.0" />

<!-- General flags -->
Expand Down Expand Up @@ -1874,7 +1874,7 @@
<product prefix="lib" path="src" uuid="5ffb5f52-0772-4404-bb2f-39be5f82a158" >
<flag define="sysconfdir" />
<library name="bitcoin-database" />
<library name="bitcoin-consensus" />
<!--<library name="bitcoin-consensus" />-->
<library name="bitcoin-network" />
<headers path="include" />
<sources path="src" />
Expand Down Expand Up @@ -1914,20 +1914,20 @@
<option value="${with_boost}" />
<option value="${with_pkgconfigdir}" />
</build>
<build name="bitcoin-consensus" github="libbitcoin" repository="libbitcoin-consensus" branch="master" parallel="true" conditional="true" >
<!--<build name="bitcoin-consensus" github="libbitcoin" repository="libbitcoin-consensus" branch="master" parallel="true" conditional="true" >
<option value="--without-tests" cmake="-Dwith-tests=no" />
<option value="${with_boost}" />
<option value="${with_pkgconfigdir}" />
</build>
</build>-->
<build name="bitcoin-node" github="libbitcoin" repository="libbitcoin-node" branch="master" parallel="true" >
<option value="${with_boost}" />
<option value="${with_pkgconfigdir}" />
</build>
</install>

<presets>
<mapping name="bitcoin-node" type="remove" parameter="consensus" />
<mapping name="bitcoin-consensus" type="base" />
<!--<mapping name="bitcoin-node" type="remove" parameter="consensus" />-->
<!--<mapping name="bitcoin-consensus" type="base" />-->
<mapping name="bitcoin-database" type="base" />
<mapping name="bitcoin-network" type="base" />
<mapping name="bitcoin-system" type="add" parameter="icu" />
Expand All @@ -1948,14 +1948,14 @@
<ci>
<axis name="boost" build="true" />
<axis name="icu" build="true" with="true" buildwith="true" recognized="true" />
<axis name="consensus" with="true" without="true" recognized="true" />
<!--<axis name="consensus" with="true" without="true" recognized="true" />-->

<job build="all"
system="osx"
assert="ndebug" link="dynamic" optimization="size">
<axis name="boost" value="build" />
<axis name="icu" value="build" />
<axis name="consensus" value="with" />
<!--<axis name="consensus" value="with" />-->
<option autotools="--enable-isystem" />
</job>

Expand All @@ -1964,7 +1964,7 @@
assert="ndebug" link="static" optimization="size">
<axis name="boost" value="build" />
<axis name="icu" value="build" />
<axis name="consensus" value="without" />
<!--<axis name="consensus" value="without" />-->
<option autotools="--enable-isystem" />
</job>

Expand All @@ -1975,7 +1975,7 @@
preset="nix-gnu-debug-shared">
<axis name="boost" value="build" />
<!-- axis name="icu" /> -->
<axis name="consensus" value="with" />
<!--<axis name="consensus" value="with" />-->
<option autotools="--enable-isystem" />
</job>

Expand All @@ -1986,7 +1986,7 @@
preset="nix-gnu-release-static-size">
<axis name="boost" value="build" />
<axis name="icu" value="build" />
<axis name="consensus" value="with" />
<!--<axis name="consensus" value="with" />-->
<option autotools="--enable-isystem" />
</job>

Expand All @@ -1997,7 +1997,7 @@
preset="nix-gnu-release-shared-size">
<axis name="boost" value="build" />
<!-- <axis name="icu" /> -->
<axis name="consensus" value="without" />
<!--<axis name="consensus" value="without" />-->
<option autotools="--enable-isystem" />
</job>

Expand All @@ -2008,7 +2008,7 @@
coverage="true">
<axis name="boost" value="build" />
<axis name="icu" value="build" />
<axis name="consensus" value="with" />
<!--<axis name="consensus" value="with" />-->
<option autotools="--enable-isystem" />
</job>

Expand All @@ -2018,7 +2018,7 @@
assert="ndebug" link="static" optimization="size">
<axis name="boost" value="build" />
<axis name="icu" value="build" />
<axis name="consensus" value="with" />
<!--<axis name="consensus" value="with" />-->
</job>

<job system="windows" compiler="x64" assert="debug" link="static" />
Expand Down
Loading