summaryrefslogtreecommitdiff
path: root/external
Commit message (Collapse)AuthorAgeFilesLines
* randomx: update submoduleselsta2022-07-261-0/+0
|
* Merge pull request #8358luigi11112022-07-031-0/+4
|\ | | | | | | fb3f7ce clang warning fix for #8338 (Jeffrey Ryan)
| * clang warning fix for #8338Jeffrey Ryan2022-05-271-0/+4
| | | | | | | | Unlike some other warnings, clang does not have a `stringop-overflow` group so it doesn't recognize the `#pragma GCC ...` directive in #8338
* | Merge pull request #7774luigi11112022-07-031-2/+56
|\ \ | |/ |/| | | | | | | | | | | | | | | ade464a ITS#9385 fix using MDB_NOSUBDIR with nonexistent file (Kris Zyp) 033a32a Remove check is_directory check on lmdb path (Howard Chu) b096e16 Revert 'db_lmdb: test for mmap support at init time' (Howard Chu) 493577a Silence spurious fallthru warning (Howard Chu) b46a60e Fix rawpart flag collision (Howard Chu) 4e7586c More RAWPART support (Howard Chu) 747f5d3 Preliminary raw partition support (Howard Chu)
| * ITS#9385 fix using MDB_NOSUBDIR with nonexistent fileKris Zyp2022-06-031-4/+1
| |
| * Silence spurious fallthru warningHoward Chu2022-06-031-1/+1
| |
| * Fix rawpart flag collisionHoward Chu2022-06-031-2/+2
| |
| * More RAWPART supportHoward Chu2022-06-031-1/+43
| | | | | | | | | | Use mmap to read and initialize the meta pages, raw device may not support read/write syscalls.
| * Preliminary raw partition supportHoward Chu2022-06-031-1/+16
| | | | | | | | Autodetects that a block device is being used.
* | GCC: Fix -Wstringop-overflow= warningsJeffrey Ryan2022-05-161-0/+3
|/ | | | Resolves #8320
* Update randomx: fix Mac linking errorHoward Chu2022-05-101-0/+0
| | | | Also silence randomx malloc exceptions
* randomx: update submoduleselsta2022-04-061-0/+0
|
* Update RandomXJethro Grassie2021-11-201-0/+0
|
* Update RandomX to v1.1.10tevador2021-11-081-0/+0
|
* Merge pull request #7945luigi11112021-09-231-1/+4
|\ | | | | | | 4afd9a7 cmake: set required C/C++ standard to 11 (selsta)
| * cmake: set required C/C++ standard to 11selsta2021-09-161-1/+4
| | | | | | | | Co-authored-by: Jason Rhinelander <jason@imaginary.ca>
* | easylogging++: fix missing logsmoneromooo-monero2021-09-231-3/+4
|/
* Merge pull request #7828luigi11112021-09-091-0/+1
|\ | | | | | | b2c59af EasyLogging++: new anti-UB test and propagating exception (mj-xmr)
| * EasyLogging++: new anti-UB test and propagating exceptionmj-xmr2021-08-031-0/+1
| |
* | external: remove unbound submoduleselsta2021-09-032-17/+3
|/
* Merge pull request #7380luigi11112021-06-241-3/+2
|\ | | | | | | 8889f49 easylogging++: fix potential memory corruption (moneromooo-monero)
| * easylogging++: fix potential memory corruptionmoneromooo-monero2021-02-161-3/+2
| | | | | | | | | | | | | | | | | | | | | | The m_typedConfigurations pointer is copied from one object to the next, but deleted in the dtor, leading to potential double free. It is also deleted first thing in the copy ctor, deleting uninitialized memory. This does not seem to actually happen in practice (those functions do not get called), but seems safer that way. Coverity 1446562
* | Merge pull request #7733luigi11112021-06-161-0/+0
|\ \ | | | | | | | | | cd8901c randomx: bump submodule to v1.1.9 (selsta)
| * | randomx: bump submodule to v1.1.9selsta2021-05-221-0/+0
| | |
* | | CMake: glob missing headers for easyloggingmj-xmr2021-05-141-1/+5
|/ /
* | cmake: set 3.5 as minimum versionselsta2021-04-271-1/+1
| |
* | Merge pull request #7656luigi11112021-04-221-3/+3
|\ \ | | | | | | | | | 5fe22ac ITS#9496 fix mdb_env_open bug from #8704 (hyc)
| * | ITS#9496 fix mdb_env_open bug from #8704Howard Chu2021-04-091-3/+3
| | | | | | | | | | | | Broken in 9c6eb75c656363176a55c63c81803feb3cfa614d
* | | Merge pull request #7643luigi11112021-04-221-0/+1
|\ \ \ | | | | | | | | | | | | 19ed7ab Test: Enable coverage for external repositories (mj-xmr)
| * | | Test: Enable coverage for external repositoriesmj-xmr2021-04-011-0/+1
| |/ / | | | | | | | | | Add monero_enable_coverage() for reuse in case C/CXX_FLAGS are overwritten.
* | | Merge pull request #7641luigi11112021-04-161-10/+14
|\ \ \ | |/ / |/| | | | | a16328e easylogging++: in place log sanitization (moneromooo-monero)
| * | easylogging++: in place log sanitizationmoneromooo-monero2021-03-291-10/+14
| | | | | | | | | | | | saves an object ctor/dtor per log
* | | Merge pull request #7439luigi11112021-03-292-15/+32
|\ \ \ | | | | | | | | | | | | 0f2b5af Reduced executable size; reduced call sequence to 'allowed' log function (Lee Clagett)
| * | | Reduced executable size; reduced call sequence to "allowed" log functionLee Clagett2021-01-162-15/+32
| |/ /
* / / ITS#9500 fix regression from ITS#8662Howard Chu2021-03-231-1/+1
|/ / | | | | | | mdb_load -a patch broke overwriting with MDB_CURRENT
* | Merge pull request #7361luigi11112021-02-181-1/+1
|\ \ | | | | | | | | | 935bfaa ITS#9007 don't free loose writemap pages (Kris Zyp)
| * | ITS#9007 don't free loose writemap pagesKris Zyp2021-02-011-1/+1
| |/ | | | | | | Broken in ITS#8756
* / miniupnp: set submodule to upstream, disable installselsta2021-01-122-0/+2
|/
* Revert "unbound: update to get build fixes"moneromooo-monero2020-09-061-0/+0
| | | | | | This reverts commit 541a7c81a1c9e6b261fc13e0b9e3829df46a0bdf. It breaks the depends build
* unbound: update to get build fixesmoneromooo-monero2020-09-061-0/+0
|
* Merge pull request #6782luigi11112020-08-311-0/+0
|\ | | | | | | c3f9913 supercop: update submodule (selsta)
| * supercop: update submoduleselsta2020-08-271-0/+0
| |
* | Merge pull request #6766Alexander Blair2020-08-271-1/+2
|\ \ | |/ |/| | | 12ffc79b2 qrcodegen: fix compilation with old gcc, use modern cmake (selsta)
| * qrcodegen: fix compilation with old gcc, use modern cmakeselsta2020-08-161-1/+2
| |
* | Merge pull request #6727Alexander Blair2020-08-161-0/+11
|\ \ | | | | | | | | | | | | | | | | | | 13eee1d6a rpc: reject wrong sized txid (moneromooo-monero) 92e6b7df2 easylogging++: fix crash with reentrant logging (moneromooo-monero) 6dd95d530 epee: guard against exceptions in RPC handlers (moneromooo-monero) 90016ad74 blockchain: guard against exceptions in add_new_block/children (moneromooo-monero)
| * | easylogging++: fix crash with reentrant loggingmoneromooo-monero2020-07-301-0/+11
| |/
* | Merge pull request #6712Alexander Blair2020-08-161-1/+1
|\ \ | | | | | | | | | 01cd3d934 For NetBSD, add instructions to README.md and define to ea_config.h (thomasvaughan)
| * | For NetBSD, add instructions to README.md and define to ea_config.hthomasvaughan2020-07-191-1/+1
| |/
* | Merge pull request #6698Alexander Blair2020-08-161-0/+0
|\ \ | | | | | | | | | a3933a2a5 Update RandomX to v1.1.8 (tevador)
| * | Update RandomX to v1.1.8tevador2020-07-041-0/+0
| | |