Skip to content
Open
Show file tree
Hide file tree
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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
include:
- os: ubuntu-24.04
cxx: "clang++-16"
cxx: "clang++-18"
link: "dynamic"
optimization: "debug"
assert: "debug"
Expand All @@ -29,14 +29,14 @@ jobs:
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
cc: "clang-18"
flags: "-Og -fPIE"
options: "--enable-isystem"
packager: "apt"
packages: ""

- os: ubuntu-24.04
cxx: "clang++-16"
cxx: "clang++-18"
link: "static"
optimization: "size"
assert: "ndebug"
Expand All @@ -47,7 +47,7 @@ jobs:
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
cc: "clang-18"
flags: "-Os -fPIE"
options: "--enable-isystem"
packager: "apt"
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
matrix:
include:
- os: ubuntu-24.04
cxx: "clang++-16"
cxx: "clang++-18"
link: "dynamic"
optimization: "debug"
assert: "debug"
Expand All @@ -307,14 +307,14 @@ jobs:
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
cc: "clang-18"
flags: "-Og -fPIE"
options: ""
packager: "apt"
packages: ""

- os: ubuntu-24.04
cxx: "clang++-16"
cxx: "clang++-18"
link: "static"
optimization: "size"
assert: "ndebug"
Expand All @@ -325,7 +325,7 @@ jobs:
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
cc: "clang-18"
flags: "-Os -fPIE"
options: ""
packager: "apt"
Expand Down Expand Up @@ -588,7 +588,7 @@ jobs:
include:
- os: ubuntu-24.04
preset: "nix-gnu-debug-shared"
cxx: "clang++-16"
cxx: "clang++-18"
link: "dynamic"
optimization: "debug"
assert: "debug"
Expand All @@ -599,15 +599,15 @@ jobs:
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
cc: "clang-18"
flags: "-Og -fPIE"
options: ""
packager: "apt"
packages: ""

- os: ubuntu-24.04
preset: "nix-gnu-release-static"
cxx: "clang++-16"
cxx: "clang++-18"
link: "static"
optimization: "size"
assert: "ndebug"
Expand All @@ -618,7 +618,7 @@ jobs:
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
cc: "clang-18"
flags: "-Os -fPIE"
options: ""
packager: "apt"
Expand Down
2 changes: 1 addition & 1 deletion builds/msvc/vs2022/libbitcoin-system.import.props
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<!-- WITH_ICU always defined in Visual Studio builds. -->
<!-- NOMINMAX enables use of std::min/max without conflict. -->
<!-- WIN32_LEAN_AND_MEAN avoids inclusion of certain headers, winsock.h conflicts with boost and protocol use of winsock2.h. -->
<PreprocessorDefinitions>WITH_ICU;WIN32_LEAN_AND_MEAN;NOMINMAX;_WIN32_WINNT=0x0600;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions>WITH_ICU;WIN32_LEAN_AND_MEAN;NOMINMAX;_WIN32_WINNT=0x0602;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<!-- Disable auto-linking for all boost-json and its dependency boost-container so they can be header only. -->
<PreprocessorDefinitions>BOOST_JSON_NO_LIB;BOOST_CONTAINER_NO_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Linkage-libbitcoin-system)' == 'static' Or '$(Linkage-libbitcoin-system)' == 'ltcg'">BC_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Expand Down
Loading