소스 검색

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) ---
 	}
 }