aboutsummaryrefslogtreecommitdiff
path: root/contrib/depends/packages/protobuf.mk (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2024-02-23depends: {native_,}protobuf: speedup buildtobtoht1-8/+3
2023-09-30trezor: support v2.5.2+, add more trezor tests, fix chaingen and testsDusan Klinec1-5/+1
- passphrase logic: remove backward compatibility for 2.4.3, code cleanup. - fix LibUSB cmake for static builds on OSX - tests: all tests now work with passphrase logic enabled. Passphrase test added with different passphrase. no_passphrase test added, Trezor pin test added. Testing wallet opening with correct and incorrect passphrase. Trezor test chain revamp, cleanup. Smaller chain, chain file versioning added. - tests: Trezor tests support TEST_MINING_ENABLED, TEST_MINING_TIMEOUT env vars to change mining-related tests behaviour. - requires protobuf@21 on osx for now (c++14), building with unlinked protobuf: `CMAKE_PREFIX_PATH=$(find /opt/homebrew/Cellar/protobuf@21 -maxdepth 1 -type d -name "21.*" -print -quit) \ make debug-test-trezor -j8`
2022-05-09Silence some protobuf link warningsHoward Chu1-0/+5
4 warnings remain but it's better than before
2019-11-17Add ARFLAGSHoward Chu1-1/+1
Needed to invoke deterministic mode on some archivers
2019-06-25Remove clutter in depends installed packagesTheCharlatan1-1/+3
To speedup the depends cached builds, remove some some clutter from the package files. This mainly incldues removing all the shared libraries and .la linker files. It also gives stronger guarantees that monero only links the static libs without any external rvalues.
2018-09-10Modify depends for monero's dependenciesTheCharlatan1-0/+29
Add readline, ldns, graphviz, unbound to depends packages Add a cmake toolchain file to depends that is uniquely created for every build and placed in triple/share/toolchain.cmake This file is then passed to cmake with -DCMAKE_TOOLCHAIN_FILE=/path/to/triple/share/toolchain.cmake Add the boost locale package to depends In the depends cmake toolchain file, a DEPENDS flag is added to exclude, or change cmake checks done that are required for depends Link miniupnpc and unwind from depends and not external Add libiconv and icu4c to depends, required for mingw32 builds. Headers (winsock) need to be lower case in order to compile on unix systems. This should not affect building on windows.