Index: buildbot/osuosl/master/config/builders.py =================================================================== --- buildbot/osuosl/master/config/builders.py +++ buildbot/osuosl/master/config/builders.py @@ -259,7 +259,6 @@ "-DCMAKE_CXX_FLAGS='-mcpu=cortex-a15 -mfpu=vfpv3 -mthumb'", "-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'", "-DLLVM_LIT_ARGS='-sv -j4'", - "-DLLVM_BUILD_GLOBAL_ISEL=ON", "-DLLVM_PARALLEL_LINK_JOBS=2"])}, ## Cortex-A15 check-all self-host with CMake builder @@ -899,7 +898,6 @@ env={'PATH':'/usr/lib64/ccache:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'}, extra_cmake_args=["-DCMAKE_C_FLAGS='-mcpu=cortex-a57 -DSANITIZER_AARCH64_VMA=39'", "-DCMAKE_CXX_FLAGS='-mcpu=cortex-a57 -DSANITIZER_AARCH64_VMA=39'", - "-DLLVM_BUILD_GLOBAL_ISEL=ON", "-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'"], )}, Index: zorg/buildbot/builders/sanitizers/buildbot_functions.sh =================================================================== --- zorg/buildbot/builders/sanitizers/buildbot_functions.sh +++ zorg/buildbot/builders/sanitizers/buildbot_functions.sh @@ -147,7 +147,7 @@ export ASAN_SYMBOLIZER_PATH="${llvm_symbolizer_path}" export ASAN_OPTIONS="check_initialization_order=true:detect_stack_use_after_return=1:detect_leaks=1" local llvm_use_sanitizer="Address" - local fsanitize_flag="-fsanitize=address -fsanitize-address-use-after-scope" + local fsanitize_flag="-fsanitize=address" local build_type="Release" elif [ "$sanitizer_name" == "ubsan" ]; then export UBSAN_OPTIONS="external_symbolizer_path=${llvm_symbolizer_path}:print_stacktrace=1"