aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.qt.include
Commit message (Collapse)AuthorAgeFilesLines
* scripted-diff: Remove trailing whitespacesJoão Barbosa2018-07-241-1/+1
| | | | | | | | -BEGIN VERIFY SCRIPT- sed --in-place'' --regexp-extended 's/[[:space:]]+$//g' $(git grep -I --files-with-matches --extended-regexp '[[:space:]]+$' -- src test ':!*.svg' ':!src/crypto/sha256_sse4*' ':!src/leveldb' ':!src/qt/locale' ':!src/secp256k1' ':!src/univalue') -END VERIFY SCRIPT-
* crypto: cleanup sha256 buildCory Fields2018-06-061-1/+1
| | | | | Rather than appending all possible cpu variants to all targets, create a convenience variable that encompasses all.
* Merge #13191: Specialized double-SHA256 with 64 byte inputs with SSE4.1 and AVX2Wladimir J. van der Laan2018-06-041-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4defdfab94504018f822dc34a313ad26cedc8255 [MOVEONLY] Move unused Merkle branch code to tests (Pieter Wuille) 4437d6e1f3107a20a8c7b66be8b4b972a82e3b28 8-way AVX2 implementation for double SHA256 on 64-byte inputs (Pieter Wuille) 230294bf5fdeba7213471cd0b795fb7aa36e5717 4-way SSE4.1 implementation for double SHA256 on 64-byte inputs (Pieter Wuille) 1f0e7ca09c9d7c5787c218156fa5096a1bdf2ea8 Use SHA256D64 in Merkle root computation (Pieter Wuille) d0c96328833127284574bfef26f96aa2e4afc91a Specialized double sha256 for 64 byte inputs (Pieter Wuille) 57f34630fb6c3e218bd19535ac607008cb894173 Refactor SHA256 code (Pieter Wuille) 0df017889b4f61860092e1d54e271092cce55f62 Benchmark Merkle root computation (Pieter Wuille) Pull request description: This introduces a framework for specialized double-SHA256 with 64 byte inputs. 4 different implementations are provided: * Generic C++ (reusing the normal SHA256 code) * Specialized C++ for 64-byte inputs, but no special instructions * 4-way using SSE4.1 intrinsics * 8-way using AVX2 intrinsics On my own system (AVX2 capable), I get these benchmarks for computing the Merkle root of 9001 leaves (supported lengths / special instructions / parallellism): * 7.2 ms with varsize/naive/1way (master, non-SSE4 hardware) * 5.8 ms with size64/naive/1way (this PR, non-SSE4 capable systems) * 4.8 ms with varsize/SSE4/1way (master, SSE4 hardware) * 2.9 ms with size64/SSE4/4way (this PR, SSE4 hardware) * 1.1 ms with size64/AVX2/8way (this PR, AVX2 hardware) Tree-SHA512: efa32d48b32820d9ce788ead4eb583949265be8c2e5f538c94bc914e92d131a57f8c1ee26c6f998e81fb0e30675d4e2eddc3360bcf632676249036018cff343e
| * 8-way AVX2 implementation for double SHA256 on 64-byte inputsPieter Wuille2018-05-291-1/+1
| |
| * 4-way SSE4.1 implementation for double SHA256 on 64-byte inputsPieter Wuille2018-05-291-1/+1
| |
* | [gui] Add proxy icon in statusbarCristian Mircea Messel2018-05-151-0/+1
|/
* Remove direct bitcoin calls from qt/splashscreen.cppRussell Yanofsky2018-04-041-2/+2
|
* Merge #11621: [build] Add temp_bitcoin_locale_qrc to CLEAN_QT to fix make ↵Wladimir J. van der Laan2017-11-171-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | distcheck a7c949f [build] Add temp_bitcoin_locale_qrc to CLEAN_QT to fix make distcheck (fanquake) Pull request description: Fixes #11302 Tested on OS X 10.12.6 with 0e707919f596c80056bca295abd71543ccae4956 Was failing like: ``` make distclean .... rm -f config.status config.cache config.log configure.lineno config.status.lineno rm -f Makefile ERROR: files left in build directory after distclean: ./src/qt/temp_bitcoin_locale.qrc make[1]: *** [distcleancheck] Error 1 make: *** [distcheck] Error 1 ``` Tree-SHA512: 291c786f20a82e648fdee2bcbc654d93d9abeb7d996ae7706d304697d4952709a0ec5d3aa88d1214f22cfe81ced88f10c187929904eecd60f2165b696727dd88
| * [build] Add temp_bitcoin_locale_qrc to CLEAN_QT to fix make distcheckfanquake2017-11-151-1/+1
| |
* | build: Remove -I for everything but project rootWladimir J. van der Laan2017-11-161-2/+1
|/ | | | | Remove -I from build system for everything but the project root, and built-in dependencies.
* [Build] Add AM_OBJCXXFLAGS and QT_PIE_FLAGS to OBJCXXFLAGS to future-proof ↵fanquake2017-10-211-0/+1
| | | | darwin targets
* leveldb: enable runtime-detected crc32 instructionsCory Fields2017-06-091-1/+1
|
* Make qt wallet test compatible with qt4Russell Yanofsky2017-03-271-0/+3
| | | | | | | | | Unlike Qt5, the Qt4 signals implementation doesn't allow a signal to be directly connected to a c++ lambda expression. Work around this by defining a Callback QObject with a virtual method that can forward calls to a closure. The Qt4 error was reported by Patrick Strateman <[email protected]> in https://github.com/bitcoin/bitcoin/pull/10039#issuecomment-289248763
* Merge #9513: build: fix qt distdir builds (retry)Wladimir J. van der Laan2017-01-111-1/+1
|\ | | | | | | 67ca130 build: fix for out-of-tree/distdir qt builds (Cory Fields)
| * build: fix for out-of-tree/distdir qt buildsCory Fields2017-01-101-1/+1
| |
* | qt: periodic translations updateWladimir J. van der Laan2017-01-101-2/+3
| |
* | [qt] Add more sources to translateMarcoFalke2017-01-041-2/+2
|/
* Merge #8996: Network activity toggleJonas Schnelli2016-11-111-0/+1
|\ | | | | | | | | | | | | | | | | 19f46f1 Qt: New network_disabled icon (Luke Dashjr) 54cf997 RPC/Net: Use boolean consistently for networkactive, and remove from getinfo (Luke Dashjr) b2b33d9 Overhaul network activity toggle (Jonas Schnelli) 32efa79 Qt: Add GUI feedback and control of network activity state. (Jon Lund Steffensen) e38993b RPC: Add "togglenetwork" method to toggle network activity temporarily (Jon Lund Steffensen) 7c9a98a Allow network activity to be temporarily suspended. (Jon Lund Steffensen)
| * Overhaul network activity toggleJonas Schnelli2016-10-241-0/+1
| | | | | | | | | | | | - Rename RPC command "togglenetwork" to "setnetworkactive (true|false)" - Add simple test case - GUI toggle added to connections icon in statusbar
* | qt: Translate all files, even if wallet disabledWladimir J. van der Laan2016-10-111-7/+11
| | | | | | | | | | This passes all QT cpp files to the lupdate executable which extracts translations, no matter what conditional functionality is enabled.
* | Merge #8784: Copyright headers for build scriptsWladimir J. van der Laan2016-09-291-0/+4
|\ \ | | | | | | | | | | | | | | | | | | 0c4e6ce Add MIT license to build-aux/m4 scripts (Luke Dashjr) 3f8a5d8 Trivial: build-aux/m4/l_atomic: Fix typo (Luke Dashjr) 3b4b6dc Add MIT license to autogen.sh and share/genbuild.sh (Luke Dashjr) f4dffdd Add MIT license to Makefiles (Luke Dashjr)
| * | Add MIT license to MakefilesLuke Dashjr2016-09-211-0/+4
| |/
* / [Qt] add out-of-sync modal info layerJonas Schnelli2016-08-261-0/+4
|/
* [Qt] add HD enabled/disabled icon to the status barJonas Schnelli2016-08-191-2/+4
|
* qt: periodic translation updateWladimir J. van der Laan2016-07-121-0/+1
| | | | | Added languages: - `bg_BG`: Bulgarian (Bulgaria)
* windows: Add testnet icon for testnet linkWladimir J. van der Laan2016-06-301-0/+1
| | | | Overhauled testnet icon by Jonas Schnelli
* qt: Periodic translations updateWladimir J. van der Laan2016-06-281-5/+1
|
* qt: Periodic transifex updateWladimir J. van der Laan2016-06-211-0/+11
| | | | | | | | | | | | | | | | Pulls in the following new languages: - `af` Afrikaans - `es_419` Spanish (Latin America) - `es_AR` Spanish (Argentina) - `es_CO` Spanish (Colombia) - `fil` Filipino - `it_IT` Italian (Italy) - `ro` Romanian - `sr@latin` Serbian (Latin) - `ta` Tamil - `uz@Latn` Uzbek (Latin) - `zh_HK` Chinese (Hong Kong)
* bulid: fix "make translate" when out-of-treeCory Fields2016-06-091-3/+3
|
* build: more out-of-tree fixupsCory Fields2016-06-011-2/+3
| | | | | | - clear the __pycache__ during 'make clean' - Copy the qrc locale file to a temp location and remove it when finished (rcc expects everything to be in the same path)
* qt: Fix out-of-tree GUI buildsWladimir J. van der Laan2016-04-221-2/+2
| | | | | | | | | | | | | | | | | | | | Without this patch: - When I compile the GUI from the bitcoin directory itself, it works as expected. - When I build the GUI in an out-of-tree build, I cannot get it to select tabs. When I click, say the "Receive" tab nothing happens, the button selects but it doesn't switch the page. The rest - even the debug window - seems to work. See full discussion here: https://github.com/bitcoin/bitcoin/pull/7911#issuecomment-212413442 This turned out to be caused by a mismatch in the arguments to moc, preventing it from finding `bitcoin-config.h`. Fix this by passing `$(DEFAULT_INCLUDES)` to it, which gets set to the appropriate path by autoconf itself.
* Merge #7707: [RPC][QT] UI support for abandoned transactionsJonas Schnelli2016-04-041-1/+2
|\ | | | | | | 8efed3b [Qt] Support for abandoned/abandoning transactions (Jonas Schnelli)
| * [Qt] Support for abandoned/abandoning transactionsJonas Schnelli2016-04-041-1/+2
| |
* | build: python 3 compatibilityWladimir J. van der Laan2016-03-291-1/+1
|/ | | | | | | | | | | | | | | Ubuntu 16.04 "xenial xerus" does not come with Python 2.x by default. It is possible to install a python-2.7 package, but this has its own problem: no `python` or `python2` symlink (see #7717). This fixes the following scripts to work with python 3: - `make check` (bctest,py, bitcoin-util-test.py) - `make translate` (extract_strings_qt.py) - `make symbols-check` (symbol-check.py) - `make security-check` (security-check.py) Explicitly call the python commands using $(PYTHON) instead of relying on the interpreter line at the top of the scripts.
* Merge branch 'master' into single_prodnameLuke Dashjr2016-02-031-6/+15
|\
| * Merge #7091: Consensus build packageWladimir J. van der Laan2016-02-021-1/+1
| |\ | | | | | | | | | | | | | | | cf82d05 Build: Consensus: Make libbitcoinconsensus_la_SOURCES fully dynamic and dependend on both crypto and consensus packages (Jorge Timón) 4feadec Build: Libconsensus: Move libconsensus-ready files to the consensus package (Jorge Timón) a3d5eec Build: Consensus: Move consensus files from common to its own module/package (Jorge Timón)
| | * Build: Consensus: Move consensus files from common to its own module/packageJorge Timón2015-12-081-1/+1
| | |
| * | [Qt] Add a new chevron/arrow icon for the console prompt lineJonas Schnelli2016-01-261-0/+1
| | |
| * | [Qt] Add option to increase/decrease font size in the console windowJonas Schnelli2016-01-221-0/+2
| |/
| * qt: Final translation update before 0.12 forkWladimir J. van der Laan2015-12-021-5/+11
| | | | | | | | | | | | | | | | - Add new translations (finally, after a long time) - update-translation script was not considering new translations - oops - fixed this, also remove (nearly) empty translations - Update translation process, it was still describing the old repository structure
* | Bugfix: Actually use _COPYRIGHT_HOLDERS_SUBSTITUTION everywhereLuke Dashjr2016-01-191-1/+1
| |
* | Set copyright holders displayed in notices separately from the package nameLuke Dashjr2015-12-221-1/+1
| | | | | | | | This helps avoid accidental removal of upstream copyright names
* | Unify package name to as few places as possible without major changesLuke Dashjr2015-12-141-1/+1
|/
* build: Use fPIC rather than fPIE for qt objects.Cory Fields2015-11-091-2/+2
| | | | But only if qt was built with reduced relocations.
* build: Split hardening/fPIE options outCory Fields2015-11-091-2/+4
| | | | This allows for fPIE to be used selectively.
* [Univalue] add univalue over subtreeJonas Schnelli2015-10-011-1/+1
| | | | similar to secp256k1 include and compile univalue over a subtree
* Rename rpcconsole.ui => debugwindow.uiMarcoFalke2015-09-231-1/+1
|
* [Qt] add banlist table below peers tableJonas Schnelli2015-09-161-0/+3
|
* Add ZeroMQ support. Notify blocks and transactions via ZeroMQJeff Garzik2015-09-161-0/+3
| | | | | | | | | Continues Johnathan Corgan's work. Publishing multipart messages Bugfix: Add missing zmq header includes Bugfix: Adjust build system to link ZeroMQ code for Qt binaries
* build: build-system changes for libeventWladimir J. van der Laan2015-09-021-1/+2
|