summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--build_config/clang-asan.rb16
1 files changed, 3 insertions, 13 deletions
diff --git a/build_config/clang-asan.rb b/build_config/clang-asan.rb
index e693332c2..5ee0d9129 100644
--- a/build_config/clang-asan.rb
+++ b/build_config/clang-asan.rb
@@ -1,21 +1,11 @@
MRuby::Build.new do |conf|
- toolchain :clang
+ conf.toolchain :clang
# include the GEM box
conf.gembox 'default'
- # C compiler settings
- conf.cc do |cc|
- cc.flags << "-fsanitize=address,undefined"
- cc.include_paths = ["#{root}/include"]
- end
-
- # Linker settings
- conf.linker do |linker|
- linker.flags << "-fsanitize=address,undefined"
- end
-
# Turn on `enable_debug` for better debugging
- enable_debug
+ conf.enable_sanitizer "address,undefined"
+ conf.enable_debug
conf.enable_bintest
conf.enable_test
end