mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 15:57:31 +09:00
Update NSS to 3.41
This commit is contained in:
parent
d5f6e64f43
commit
5f0986e66f
540 changed files with 49568 additions and 10631 deletions
|
|
@ -5,8 +5,7 @@ set +e
|
|||
|
||||
# Default to clang if CC is not set.
|
||||
if [ -z "$CC" ]; then
|
||||
command -v clang &> /dev/null 2>&1
|
||||
if [ $? != 0 ]; then
|
||||
if ! command -v clang &> /dev/null 2>&1; then
|
||||
echo "Fuzzing requires clang!"
|
||||
exit 1
|
||||
fi
|
||||
|
|
@ -24,8 +23,8 @@ if [ "$fuzz_oss" = 1 ]; then
|
|||
gyp_params+=(-Dno_zdefs=1 -Dfuzz_oss=1)
|
||||
else
|
||||
enable_sanitizer asan
|
||||
# Ubsan doesn't build on 32-bit at the moment. Disable it.
|
||||
if [ "$build_64" = 1 ]; then
|
||||
# Ubsan only builds on x64 for the moment.
|
||||
if [ "$target_arch" = "x64" ]; then
|
||||
enable_ubsan
|
||||
fi
|
||||
enable_sancov
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue