forked from dashpay/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge bitcoin#22646: tighter Univalue integration, remove `--with-sys…
…tem-univalue`
- Loading branch information
Showing
20 changed files
with
1,400 additions
and
450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include univalue/sources.mk | ||
|
||
LIBUNIVALUE = libunivalue.la | ||
noinst_LTLIBRARIES += $(LIBUNIVALUE) | ||
libunivalue_la_SOURCES = $(UNIVALUE_LIB_SOURCES_INT) $(UNIVALUE_DIST_HEADERS_INT) $(UNIVALUE_LIB_HEADERS_INT) $(UNIVALUE_TEST_FILES_INT) | ||
libunivalue_la_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/$(UNIVALUE_INCLUDE_DIR_INT) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
env: | ||
MAKEJOBS: "-j4" | ||
RUN_TESTS: "true" | ||
BASE_OUTDIR: "$CIRRUS_WORKING_DIR/out_dir_base" | ||
DEBIAN_FRONTEND: "noninteractive" | ||
|
||
task: | ||
container: | ||
image: ubuntu:focal | ||
cpu: 1 | ||
memory: 1G | ||
greedy: true # https://medium.com/cirruslabs/introducing-greedy-container-instances-29aad06dc2b4 | ||
|
||
matrix: | ||
- name: "gcc" | ||
env: | ||
CC: "gcc" | ||
CXX: "g++" | ||
APT_PKGS: "gcc" | ||
- name: "clang" | ||
env: | ||
CC: "clang" | ||
CXX: "clang++" | ||
APT_PKGS: "clang" | ||
- name: "mingw" | ||
env: | ||
CC: "" | ||
CXX: "" | ||
UNIVALUE_CONFIG: "--host=x86_64-w64-mingw32" | ||
APT_PKGS: "g++-mingw-w64-x86-64 gcc-mingw-w64-x86-64 binutils-mingw-w64-x86-64" | ||
RUN_TESTS: "false" | ||
|
||
install_script: | ||
- apt update | ||
- apt install -y pkg-config build-essential libtool autotools-dev automake bsdmainutils | ||
- apt install -y $APT_PKGS | ||
autogen_script: | ||
- ./autogen.sh | ||
configure_script: | ||
- ./configure --cache-file=config.cache --bindir=$BASE_OUTDIR/bin --libdir=$BASE_OUTDIR/lib $UNIVALUE_CONFIG | ||
make_script: | ||
- make $MAKEJOBS V=1 | ||
test_script: | ||
- if [ "$RUN_TESTS" = "true" ]; then make $MAKEJOBS distcheck; fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.