[compiler-rt] [asan] Implement address sanitizer on AIX: Add import lists (PR #139583)

Jake Egan via llvm-commits llvm-commits at lists.llvm.org
Mon May 26 11:34:46 PDT 2025


================
@@ -281,6 +281,8 @@ else()
       PARENT_TARGET asan)
   endif()
 
+  # On AIX, we only need the static libraries.
----------------
jakeegan wrote:

I realized if I allow the shared libraries to be built, I get a cmake error because both shared and static libraries are have the same name `libclang_rt.asan.a`. So this would take additional work to support building shared libraries that won't be used at the moment. I think it makes sense to not build them for now.

https://github.com/llvm/llvm-project/pull/139583


More information about the llvm-commits mailing list