forked from MultiChain/multichain
-
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.
- Loading branch information
0 parents
commit f4e20f0
Showing
530 changed files
with
159,501 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,224 @@ | ||
ACLOCAL_AMFLAGS = -I build-aux/m4 | ||
SUBDIRS = src | ||
.PHONY: deploy FORCE | ||
|
||
GZIP_ENV="-9n" | ||
|
||
BITCOIND_BIN=$(top_builddir)/src/bitcoind$(EXEEXT) | ||
BITCOIN_QT_BIN=$(top_builddir)/src/qt/bitcoin-qt$(EXEEXT) | ||
BITCOIN_CLI_BIN=$(top_builddir)/src/bitcoin-cli$(EXEEXT) | ||
BITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win$(WINDOWS_BITS)-setup$(EXEEXT) | ||
|
||
# MCHN START | ||
|
||
MULTICHAIND_BIN=$(top_builddir)/src/multichaind$(EXEEXT) | ||
MULTICHAIN_CLI_BIN=$(top_builddir)/src/multichain-cli$(EXEEXT) | ||
MULTICHAIN_UTIL_BIN=$(top_builddir)/src/multichain-util$(EXEEXT) | ||
|
||
# MCHN END | ||
|
||
OSX_APP=Bitcoin-Qt.app | ||
OSX_DMG=Bitcoin-Qt.dmg | ||
OSX_DEPLOY_SCRIPT=$(top_srcdir)/contrib/macdeploy/macdeployqtplus | ||
OSX_FANCY_PLIST=$(top_srcdir)/contrib/macdeploy/fancy.plist | ||
OSX_INSTALLER_ICONS=$(top_srcdir)/src/qt/res/icons/bitcoin.icns | ||
OSX_PLIST=$(top_srcdir)/share/qt/Info.plist #not installed | ||
OSX_QT_TRANSLATIONS = da,de,es,hu,ru,uk,zh_CN,zh_TW | ||
|
||
DIST_DOCS = $(wildcard doc/*.md) $(wildcard doc/release-notes/*.md) | ||
|
||
WINDOWS_PACKAGING = $(top_srcdir)/share/pixmaps/bitcoin.ico \ | ||
$(top_srcdir)/share/pixmaps/nsis-header.bmp \ | ||
$(top_srcdir)/share/pixmaps/nsis-wizard.bmp \ | ||
$(top_srcdir)/doc/README_windows.txt | ||
|
||
OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_FANCY_PLIST) $(OSX_INSTALLER_ICONS) \ | ||
$(top_srcdir)/contrib/macdeploy/background.png \ | ||
$(top_srcdir)/contrib/macdeploy/DS_Store \ | ||
$(top_srcdir)/contrib/macdeploy/detached-sig-apply.sh \ | ||
$(top_srcdir)/contrib/macdeploy/detached-sig-create.sh | ||
|
||
COVERAGE_INFO = baseline_filtered_combined.info baseline.info block_test.info \ | ||
leveldb_baseline.info test_bitcoin_filtered.info total_coverage.info \ | ||
baseline_filtered.info block_test_filtered.info \ | ||
leveldb_baseline_filtered.info test_bitcoin_coverage.info test_bitcoin.info | ||
|
||
dist-hook: | ||
-$(MAKE) -C $(top_distdir)/src/leveldb clean | ||
-$(MAKE) -C $(top_distdir)/src/secp256k1 distclean | ||
-$(GIT) archive --format=tar HEAD -- src/clientversion.cpp | $(AMTAR) -C $(top_distdir) -xf - | ||
|
||
distcheck-hook: | ||
$(MKDIR_P) $(top_distdir)/_build/src/leveldb | ||
cp -rf $(top_srcdir)/src/leveldb/* $(top_distdir)/_build/src/leveldb/ | ||
-$(MAKE) -C $(top_distdir)/_build/src/leveldb clean | ||
|
||
distcleancheck: | ||
@: | ||
|
||
$(BITCOIN_WIN_INSTALLER): all-recursive | ||
$(MKDIR_P) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIND_BIN) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_QT_BIN) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_CLI_BIN) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(MULTICHAIND_BIN) $(top_builddir)/release # MCHN | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(MULTICHAI_CLI_BIN) $(top_builddir)/release # MCHN | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(MULTICHAI_UTIL_BIN) $(top_builddir)/release # MCHN | ||
@test -f $(MAKENSIS) && $(MAKENSIS) $(top_builddir)/share/setup.nsi || \ | ||
echo error: could not build $@ | ||
|
||
$(if $(findstring src/,$(MAKECMDGOALS)),$(MAKECMDGOALS), none): FORCE | ||
$(MAKE) -C src $(patsubst src/%,%,$@) | ||
|
||
$(OSX_APP)/Contents/PkgInfo: | ||
$(MKDIR_P) $(@D) | ||
@echo "APPL????" > $@ | ||
|
||
$(OSX_APP)/Contents/Resources/empty.lproj: | ||
$(MKDIR_P) $(@D) | ||
@touch $@ | ||
|
||
$(OSX_APP)/Contents/Info.plist: $(OSX_PLIST) | ||
$(MKDIR_P) $(@D) | ||
$(INSTALL_DATA) $< $@ | ||
|
||
$(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS) | ||
$(MKDIR_P) $(@D) | ||
$(INSTALL_DATA) $< $@ | ||
|
||
$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(BITCOIN_QT_BIN) | ||
$(MKDIR_P) $(@D) | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $< $@ | ||
|
||
OSX_APP_BUILT=$(OSX_APP)/Contents/PkgInfo $(OSX_APP)/Contents/Resources/empty.lproj \ | ||
$(OSX_APP)/Contents/Resources/bitcoin.icns $(OSX_APP)/Contents/Info.plist \ | ||
$(OSX_APP)/Contents/MacOS/Bitcoin-Qt | ||
|
||
if BUILD_DARWIN | ||
$(OSX_DMG): $(OSX_APP_BUILT) $(OSX_PACKAGING) | ||
$(OSX_DEPLOY_SCRIPT) $(OSX_APP) -add-qt-tr $(OSX_QT_TRANSLATIONS) -translations-dir=$(QT_TRANSLATION_DIR) -dmg -fancy $(OSX_FANCY_PLIST) -verbose 2 | ||
|
||
deploydir: $(OSX_DMG) | ||
else | ||
APP_DIST_DIR=$(top_builddir)/dist | ||
APP_DIST_EXTRAS=$(APP_DIST_DIR)/.background/background.png $(APP_DIST_DIR)/.DS_Store $(APP_DIST_DIR)/Applications | ||
|
||
$(APP_DIST_DIR)/Applications: | ||
@rm -f $@ | ||
@cd $(@D); $(LN_S) /Applications $(@F) | ||
|
||
$(APP_DIST_EXTRAS): $(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Bitcoin-Qt | ||
|
||
$(OSX_DMG): $(APP_DIST_EXTRAS) | ||
$(GENISOIMAGE) -no-cache-inodes -D -l -probe -V "Bitcoin-Qt" -no-pad -r -apple -o $@ dist | ||
|
||
$(APP_DIST_DIR)/.background/background.png: | ||
$(MKDIR_P) $(@D) | ||
$(INSTALL) $(top_srcdir)/contrib/macdeploy/background.png $@ | ||
$(APP_DIST_DIR)/.DS_Store: | ||
$(INSTALL) $(top_srcdir)/contrib/macdeploy/DS_Store $@ | ||
|
||
$(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(OSX_APP_BUILT) $(OSX_PACKAGING) | ||
INSTALLNAMETOOL=$(INSTALLNAMETOOL) OTOOL=$(OTOOL) STRIP=$(STRIP) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) -translations-dir=$(QT_TRANSLATION_DIR) -add-qt-tr $(OSX_QT_TRANSLATIONS) -verbose 2 | ||
|
||
deploydir: $(APP_DIST_EXTRAS) | ||
endif | ||
|
||
if TARGET_DARWIN | ||
appbundle: $(OSX_APP_BUILT) | ||
deploy: $(OSX_DMG) | ||
endif | ||
if TARGET_WINDOWS | ||
deploy: $(BITCOIN_WIN_INSTALLER) | ||
endif | ||
|
||
$(BITCOIN_QT_BIN): FORCE | ||
$(MAKE) -C src qt/$(@F) | ||
|
||
$(BITCOIND_BIN): FORCE | ||
$(MAKE) -C src $(@F) | ||
|
||
$(BITCOIN_CLI_BIN): FORCE | ||
$(MAKE) -C src $(@F) | ||
|
||
# MCHN START | ||
|
||
$(MULTICHAIND_BIN): FORCE | ||
$(MAKE) -C src $(@F) | ||
|
||
$(MULTICHAIN_CLI_BIN): FORCE | ||
$(MAKE) -C src $(@F) | ||
|
||
$(MULTICHAIN_UTIL_BIN): FORCE | ||
$(MAKE) -C src $(@F) | ||
|
||
# MCHN END | ||
|
||
if USE_LCOV | ||
|
||
baseline.info: | ||
$(LCOV) -c -i -d $(abs_builddir)/src -o $@ | ||
|
||
baseline_filtered.info: baseline.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
leveldb_baseline.info: baseline_filtered.info | ||
$(LCOV) -c -i -d $(abs_builddir)/src/leveldb -b $(abs_builddir)/src/leveldb -o $@ | ||
|
||
leveldb_baseline_filtered.info: leveldb_baseline.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
baseline_filtered_combined.info: leveldb_baseline_filtered.info baseline_filtered.info | ||
$(LCOV) -a leveldb_baseline_filtered.info -a baseline_filtered.info -o $@ | ||
|
||
test_bitcoin.info: baseline_filtered_combined.info | ||
$(MAKE) -C src/ check | ||
$(LCOV) -c -d $(abs_builddir)/src -t test_bitcoin -o $@ | ||
$(LCOV) -z -d $(abs_builddir)/src | ||
$(LCOV) -z -d $(abs_builddir)/src/leveldb | ||
|
||
test_bitcoin_filtered.info: test_bitcoin.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
block_test.info: test_bitcoin_filtered.info | ||
$(MKDIR_P) qa/tmp | ||
-@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0 | ||
$(LCOV) -c -d $(abs_builddir)/src --t BitcoinJBlockTest -o $@ | ||
$(LCOV) -z -d $(abs_builddir)/src | ||
$(LCOV) -z -d $(abs_builddir)/src/leveldb | ||
|
||
block_test_filtered.info: block_test.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
test_bitcoin_coverage.info: baseline_filtered_combined.info test_bitcoin_filtered.info | ||
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_bitcoin_filtered.info -o $@ | ||
|
||
total_coverage.info: baseline_filtered_combined.info test_bitcoin_filtered.info block_test_filtered.info | ||
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_bitcoin_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt | ||
|
||
test_bitcoin.coverage/.dirstamp: test_bitcoin_coverage.info | ||
$(GENHTML) -s $< -o $(@D) | ||
@touch $@ | ||
|
||
total.coverage/.dirstamp: total_coverage.info | ||
$(GENHTML) -s $< -o $(@D) | ||
@touch $@ | ||
|
||
cov: test_bitcoin.coverage/.dirstamp total.coverage/.dirstamp | ||
|
||
endif | ||
|
||
if USE_COMPARISON_TOOL | ||
check-local: | ||
$(MKDIR_P) qa/tmp | ||
@qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS) 2>&1 | ||
endif | ||
|
||
EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/rpc-tests.sh qa/pull-tester/run-bitcoin-cli qa/rpc-tests $(DIST_DOCS) $(WINDOWS_PACKAGING) $(OSX_PACKAGING) | ||
|
||
CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER) | ||
|
||
.INTERMEDIATE: $(COVERAGE_INFO) | ||
|
||
clean-local: | ||
rm -rf test_bitcoin.coverage/ total.coverage/ $(OSX_APP) |
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,72 @@ | ||
Building MultiChain | ||
===================== | ||
|
||
Linux Build Notes | ||
===================== | ||
|
||
System requirements | ||
-------------------- | ||
|
||
C++ compilers are memory-hungry. It is recommended to have at least 1 GB of | ||
memory available when compiling MultiChain. With 512MB of memory or less | ||
compilation will take much longer due to swap thrashing. | ||
|
||
Dependency Build Instructions: Ubuntu | ||
---------------------------------------------- | ||
|
||
sudo apt-get update | ||
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils | ||
sudo apt-get install libboost-all-dev | ||
sudo apt-get install git | ||
sudo apt-get install software-properties-common | ||
sudo add-apt-repository ppa:bitcoin/bitcoin | ||
sudo apt-get update | ||
sudo apt-get install libdb4.8-dev libdb4.8++-dev | ||
|
||
|
||
To Build | ||
--------------------- | ||
|
||
./autogen.sh | ||
./configure | ||
make | ||
|
||
Notes | ||
----- | ||
|
||
This will build multichaind, multichain-cli and multitchain-util in ./src | ||
|
||
The release is built with GCC and then "strip multichaind" to strip the debug | ||
symbols, which reduces the executable size by about 90%. | ||
|
||
|
||
Windows Build Notes | ||
===================== | ||
|
||
Dependency Build Instructions: Ubuntu | ||
---------------------------------------------- | ||
|
||
sudo apt-get update | ||
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils | ||
sudo apt-get install g++-mingw-w64-i686 mingw-w64-i686-dev g++-mingw-w64-x86-64 mingw-w64-x86-64-dev curl | ||
sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev | ||
sudo apt-get install git | ||
sudo add-apt-repository ppa:bitcoin/bitcoin | ||
sudo apt-get update | ||
sudo apt-get install libdb4.8-dev libdb4.8++-dev | ||
|
||
To Build | ||
--------------------- | ||
|
||
./autogen.sh | ||
cd depends | ||
make HOST=x86_64-w64-mingw32 -j4 | ||
cd .. | ||
./configure --prefix=`pwd`/depends/x86_64-w64-mingw32 --enable-cxx --disable-shared --enable-static --with-pic | ||
make | ||
|
||
Notes | ||
----- | ||
|
||
This will build multichaind.exe, multichain-cli.exe and multitchain-util.exe in ./src | ||
|
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,17 @@ | ||
TO DO BEFORE MULTICHAIN 1.0 BETA | ||
-------------------------------- | ||
* Automatic checkpointing for admin/miner permission changes | ||
* Add parameter for minimum transactions per block | ||
* Increase maximum data size per transaction from 8 MB to 32+ MB | ||
* Add monotonically increasing version number to getinfo | ||
* Allow metadata and P2SH addresses in exchange APIs | ||
* Fix APIs for performing external mining | ||
* Reactivate transaction notifications mechanism in new wallet | ||
* Add getruntimeparams command to retrieve runtime parameters | ||
* Add parameters to clearmempool and setlastblock to support rollback | ||
* Review and organize error codes | ||
* Review online and built-in documentation for consistency | ||
* Review upstream security patches since Bitcoin Core 0.10 | ||
* Review and reduce log and other file sizes | ||
* Add interactive mode to multichain-cli for Windows | ||
* Port to Mac OS |
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,9 @@ | ||
#!/bin/sh | ||
set -e | ||
srcdir="$(dirname $0)" | ||
cd "$srcdir" | ||
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then | ||
LIBTOOLIZE="${GLIBTOOLIZE}" | ||
export LIBTOOLIZE | ||
fi | ||
autoreconf --install --force --warnings=all |
Oops, something went wrong.