Skip to content

Commit ae0c32a

Browse files
committed
remove max-vartrack-size; doesn't seem to work
1 parent a522e56 commit ae0c32a

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ if(ASAN)
183183
message(STATUS "ASAN is ${ASAN}")
184184
add_compile_options(-fsanitize=address -fno-omit-frame-pointer) # -fno-omit-frame-pointer for better stack traces
185185
add_link_options(-fsanitize=address)
186-
add_compile_options(--param=max-vartrack-size=1500000) # ASan seems to push this limit, slowing compiles
187186
else()
188187
message(STATUS "ASAN is ${ASAN}; use -DASAN=ON to enable ASan run-time checking")
189188
endif(ASAN)
@@ -193,7 +192,6 @@ if(UBSAN)
193192
message(STATUS "UBSAN is ${UBSAN}")
194193
add_compile_options(-fsanitize=undefined -fno-omit-frame-pointer) # -fno-omit-frame-pointer for better stack traces
195194
add_link_options(-fsanitize=undefined)
196-
add_compile_options(--param=max-vartrack-size=1500000) # UBSan seems to push this limit, slowing compiles
197195
else()
198196
message(STATUS "UBSAN is ${UBSAN}; use -DUBSAN=ON to enable UBSan run-time checking")
199197
endif(UBSAN)

0 commit comments

Comments
 (0)