mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-25 07:16:59 +00:00
Makes basic-build-test.sh tests more consistent
This contains two fixes: * CFLAGS symbol wasn't being exported so wasn't being used in the build * Absence of a clean build meant the build could be made with existing object code that may not have code coverage instrumentation
This commit is contained in:
parent
a02912a764
commit
d9106f3538
|
@ -36,7 +36,8 @@ fi
|
||||||
|
|
||||||
|
|
||||||
# Step 1 - Make and instrumented build for code coverage
|
# Step 1 - Make and instrumented build for code coverage
|
||||||
CFLAGS=' --coverage -g3 -O0 '
|
export CFLAGS=' --coverage -g3 -O0 '
|
||||||
|
make clean
|
||||||
make
|
make
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue