浏览代码

require the __asan_unpoison_memory_region runtime symbol so empty projects with asan enabled build

Laytan Laats 4 月之前
父节点
当前提交
4d08b76372
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      base/runtime/internal.odin

+ 1 - 0
base/runtime/internal.odin

@@ -1109,6 +1109,7 @@ __read_bits :: proc "contextless" (dst, src: [^]byte, offset: uintptr, size: uin
 
 when .Address in ODIN_SANITIZER_FLAGS {
 	foreign {
+		@(require)
 		__asan_unpoison_memory_region :: proc "system" (address: rawptr, size: uint) ---
 	}
 }