aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
Commit message (Collapse)AuthorAgeFilesLines
* Add --disable-bmi2, --disable-rdseed, --disable-rdrand flagsJack Lloyd2018-11-091-1/+1
| | | | GH #1721 #1718
* Fix issue when CXX was set to 'ccache g++' see ↵Jack Lloyd2018-11-021-1/+1
| | | | https://github.com/randombit/botan-rs/pull/9
* Rename --disable-sha to --disable-sha-niJack Lloyd2018-10-261-1/+1
| | | | | Which should hopefully be less confusing, and optparse will accept the truncated version so no compat problem. GH #1718
* Canonicalize OS name firstJack Lloyd2018-10-181-11/+13
| | | | | | We need the canonical OS name to be able to look up the relevant data for defaults, but the defaults need to be set before the rest of the canonicalization code runs.
* Add option to enable/disable generation of pkg-config fileJack Lloyd2018-10-181-7/+17
| | | | | | | Plus adds os info field to disable by default for systems where pkg-config is not commonly used. Closes #1268
* Set default compiler in the info files instead of in configure sourceJack Lloyd2018-10-181-22/+19
|
* Add an OS flag for if the shared lib should be symlinked or notJack Lloyd2018-10-181-6/+3
|
* Allow configure.py parse_multiple_enable to accept an empty list and extra ↵Daniel Wyatt2018-10-141-1/+2
| | | | | | | | | commas. Examples: ./configure.py --enable-modules= ./configure.py --enable-modules=zlib,openssl, ./configure.py --enable-modules=zlib,,bzip2,
* Add an explicit OS target for EmscriptenJack Lloyd2018-10-121-4/+13
| | | | | This allows things to mostly work out of the box (#1702), and allows us to write Emscripten specific code where required.
* Fix single amalgamation file with AVX2Jack Lloyd2018-10-051-0/+2
| | | | Closes #1700
* Remove support for Visual C++ 2013Jack Lloyd2018-10-011-9/+0
| | | | Closes GH #1557
* If no default endian, don't report defaulting to "None" endianJack Lloyd2018-09-181-1/+2
|
* Use VC runtime MDd only if --debug-mode is usedJack Lloyd2018-09-111-4/+4
| | | | Closes GH #1683
* When rejecting modules, filter first by CPU requirementsJack Lloyd2018-09-041-4/+4
|
* Merge GH #1667 Add hashing with CommonCryptoJack Lloyd2018-09-041-1/+1
|\
| * Add support for hashing with CommonCryptoJose Pereira2018-09-031-1/+1
| |
* | Tighten check of feature datestampsJack Lloyd2018-09-041-1/+1
|/
* Add a way to divert certain headers which are ISA specific.Jack Lloyd2018-08-241-17/+42
| | | | | Otherwise the amalgamation internal header ended up with AVX2 code in it, which caused problems for the non-AVX2 enabled files.
* If configure fails, direct users to GH issues [ci skip]Jack Lloyd2018-08-141-4/+2
| | | | Better place for problems like this.
* Avoid trying to use symlinks by default on any Windows platformsJack Lloyd2018-08-121-4/+6
| | | | GH #1645
* Add detection for RISCV compilersJack Lloyd2018-08-061-1/+4
|
* Fix complaints from latest pylintJack Lloyd2018-08-021-14/+15
|
* Set a macro when optimizing for sizeJack Lloyd2018-07-131-0/+1
|
* If building with VC2013, force user to ack deprecationJack Lloyd2018-07-041-1/+7
| | | | GH #1557
* Avoid having Doxygen error out except in maintainer mode buildsJack Lloyd2018-07-021-0/+1
| | | | | Increases likelyhood that it will fail to build for an end user which is not helpful for anyone.
* Corrected error messageHegedüs Márton Csaba2018-06-111-1/+1
|
* Required changes according to the code reviewHegedüs Márton Csaba2018-06-111-2/+9
|
* Add support for GCC's --sysroot option to configure.pyHegedüs Márton Csaba2018-06-081-0/+6
|
* Fix some typos in configure.pyFelix Yan2018-06-091-2/+2
|
* Add a compile time warning if MSVC 2013 is detectedJack Lloyd2018-04-261-1/+7
| | | | GH #1557
* Add an explicit test mode buildJack Lloyd2018-04-141-2/+9
| | | | GH #1537
* Codecov - cover MT code in XMSS_PrivateKeyMatthias Gierlings2018-04-121-0/+2
| | | | | | Codecov does not reach all parts of the `XMSS_PrivateKey` code because too few cores are detected during the CI run. To cover the missed codepaths always return a large enough core count if botan is compiled with coverage.
* Lint fixesJack Lloyd2018-04-121-3/+8
|
* Some makefile simplificationsJack Lloyd2018-04-111-2/+1
|
* Do not create shared library symlinks on OpenBSD.Alexander Bluhm2018-04-121-0/+1
| | | | | | | | Symlinks to shared libraries confuse the OpenBSD dynamic linker. We need one file with two numbers. The problem became apparent when the abi_rev and the OpenBSD ports shared libs numbers diverged. Add a new conditional variable symlink_shared_lib to suppress the symlink in the makefile.
* Add sanitizer-specific optimization flagsJack Lloyd2018-04-071-1/+16
|
* Make tests pass by default in UBSAN modeMatthias Gierlings2018-04-061-0/+5
| | | | | | | | - Adds macros to check if botan was compiled with a certain sanitizers. - Automatically excludes the tests that are intended to provoke undefined behaviour from the test bench, when botan is compiled with UBSAN. - Changes option `--avoid-undefined` to `--no-avoid-undefined` so the failing tests can be explicitly activated when needed.
* Move version.txt to src/build-dataJack Lloyd2018-04-041-1/+1
| | | | It is not useful for end-users so don't put it in the top level.
* Add --enable-sanitizers= flag to specify which sanitizers to useJack Lloyd2018-03-271-12/+30
| | | | Allows adding support for MSan with Clang and UBsan with GCC
* Add option to specify the MSVC runtimeJack Lloyd2018-03-211-13/+42
| | | | Fixes GH #210
* Fix --disable-{neon,sse2,altivec} for simd_32 usersJack Lloyd2018-03-181-7/+9
| | | | | Using --disable-neon was not effective because simd_32 users had special logic that would still enable it.
* Use RtlGenRandom instead of CryptoAPIJack Lloyd2018-03-141-7/+16
|
* Add a facility for debug-mode assertionsJack Lloyd2018-03-141-0/+1
| | | | | When we want to check something but it is to expensive to do so in normal builds.
* Fix some MinGW build issuesJack Lloyd2018-03-041-6/+12
| | | | See #1450 and #1456
* Fix pylint errorJack Lloyd2018-03-021-1/+1
|
* Log autodetected platform information at info levelJack Lloyd2018-03-021-3/+4
| | | | | This is useful when debugging problems from build logs like https://buildd.debian.org/status/package.php?p=botan&suite=sid
* Confirm arch wordsize is expected in configureJack Lloyd2018-03-011-0/+3
|
* Fix detection of specified-endian CPUs (eg ppc64le, armeb)Jack Lloyd2018-02-231-3/+6
|
* Merge GH #1448 Support custom curves in TLS handshakeJack Lloyd2018-02-191-35/+0
|\
| * Remove house curve supportJack Lloyd2018-02-131-35/+0
| |