mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-27 01:35:27 +00:00
Add detection for zlib headers to all.sh
This commit is contained in:
parent
455755177e
commit
2150fb22c8
|
@ -674,6 +674,17 @@ component_test_zlib_make() {
|
||||||
msg "test: ssl-opt.sh (zlib, make)"
|
msg "test: ssl-opt.sh (zlib, make)"
|
||||||
if_build_succeeded tests/ssl-opt.sh
|
if_build_succeeded tests/ssl-opt.sh
|
||||||
}
|
}
|
||||||
|
support_test_zlib_make () {
|
||||||
|
base=support_test_zlib_$$
|
||||||
|
cat <<'EOF' > ${base}.c
|
||||||
|
#include "zlib.h"
|
||||||
|
int main(void) { return 0; }
|
||||||
|
EOF
|
||||||
|
gcc -o ${base}.exe ${base}.c -lz 2>/dev/null
|
||||||
|
ret=$?
|
||||||
|
rm -f ${base}.*
|
||||||
|
return $ret
|
||||||
|
}
|
||||||
|
|
||||||
component_test_zlib_cmake() {
|
component_test_zlib_cmake() {
|
||||||
msg "build: zlib enabled, cmake"
|
msg "build: zlib enabled, cmake"
|
||||||
|
@ -687,6 +698,9 @@ component_test_zlib_cmake() {
|
||||||
msg "test: ssl-opt.sh (zlib, cmake)"
|
msg "test: ssl-opt.sh (zlib, cmake)"
|
||||||
if_build_succeeded tests/ssl-opt.sh
|
if_build_succeeded tests/ssl-opt.sh
|
||||||
}
|
}
|
||||||
|
support_test_zlib_cmake () {
|
||||||
|
support_test_zlib_make "$@"
|
||||||
|
}
|
||||||
|
|
||||||
component_test_ref_configs () {
|
component_test_ref_configs () {
|
||||||
msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s
|
msg "test/build: ref-configs (ASan build)" # ~ 6 min 20s
|
||||||
|
|
Loading…
Reference in a new issue