Fix linker_asan64 symlink
Soong now appends the suffix to the symlink, so the multilib-specific symlink is no longer necessary. Test: m -j out/target/product/angler/system/bin/linker_asan64 Test: Examine LOCAL_MODULE_SYMLINKS in out/soong/Android-aosp_angler.mk Change-Id: I913a318bb31de3e630eebd2d68041a55ce3eccaf
This commit is contained in:
parent
51366e9b16
commit
10fffb4939
|
@ -129,14 +129,11 @@ cc_binary {
|
||||||
static_executable: true,
|
static_executable: true,
|
||||||
|
|
||||||
name: "linker",
|
name: "linker",
|
||||||
|
symlinks: ["linker_asan"],
|
||||||
multilib: {
|
multilib: {
|
||||||
lib32: {
|
|
||||||
symlinks: ["linker_asan"],
|
|
||||||
},
|
|
||||||
lib64: {
|
lib64: {
|
||||||
suffix: "64",
|
suffix: "64",
|
||||||
symlinks: ["linker_asan64"],
|
},
|
||||||
},
|
|
||||||
},
|
},
|
||||||
target: {
|
target: {
|
||||||
android: {
|
android: {
|
||||||
|
|
Loading…
Reference in New Issue