Skip to content

Commit 6101807

Browse files
committed
use -O3 for ASAN checks and fuzzer
1 parent 803981b commit 6101807

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

worker/meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ mediasoup_worker_test_asan_address = executable(
563563
'-DMS_LOG_STD',
564564
'-DMS_TEST',
565565
'-g',
566-
'-O0',
566+
'-O3',
567567
'-fsanitize=address',
568568
],
569569
link_args: [
@@ -594,7 +594,7 @@ mediasoup_worker_test_asan_undefined = executable(
594594
'-DMS_LOG_STD',
595595
'-DMS_TEST',
596596
'-g',
597-
'-O0',
597+
'-O3',
598598
'-fsanitize=undefined',
599599
],
600600
link_args: [
@@ -625,7 +625,7 @@ mediasoup_worker_test_asan_thread = executable(
625625
'-DMS_LOG_STD',
626626
'-DMS_TEST',
627627
'-g',
628-
'-O0',
628+
'-O3',
629629
'-fsanitize=thread',
630630
],
631631
link_args: [
@@ -698,7 +698,7 @@ executable(
698698
cpp_args: cpp_args + [
699699
'-DMS_LOG_STD',
700700
'-g',
701-
'-O0',
701+
'-O3',
702702
'-fsanitize=address,fuzzer',
703703
],
704704
link_args: [

0 commit comments

Comments
 (0)