AOSP: Add missing libdl dependencies

Bug: 62815515
Test: lunch full-eng; make checkbuild
Change-Id: I1751669c4ed046c22587938e04eb76abe8553a8d
From AOSP commit: a24084ceb74c84b0943c86deb5cb99a63d3c46d7
This commit is contained in:
Pavlin Radoslavov 2017-08-23 15:02:55 -07:00 committed by Theodore Ts'o
parent 8f8f7a7175
commit 88ca49f99b
5 changed files with 13 additions and 13 deletions

View File

@ -11,7 +11,7 @@ cc_binary {
srcs: ["fsstress.c"],
cflags: ["-W", "-Wall", "-Wno-macro-redefined"],
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
target: {
darwin: {
@ -33,5 +33,5 @@ cc_binary {
"libext2fs",
"libext2_com_err",
],
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}

View File

@ -60,7 +60,7 @@ cc_binary {
defaults: ["debugfs-defaults"],
shared_libs: debugfs_libs,
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}
cc_binary {

View File

@ -52,7 +52,7 @@ cc_binary {
defaults: ["e2fsck-defaults"],
shared_libs: e2fsck_libs,
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}
cc_binary {

View File

@ -21,7 +21,7 @@ cc_library {
"libext2_quota",
"libext2fs",
],
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
export_include_dirs: ["."],
}
@ -113,7 +113,7 @@ cc_binary {
defaults: ["tune2fs-defaults"],
shared_libs: tune2fs_libs,
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}
cc_binary {
@ -148,7 +148,7 @@ cc_binary {
"libext2_blkid",
"libext2_e2p",
],
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}
//########################################################################
@ -164,7 +164,7 @@ cc_binary {
"libext2_com_err",
"libext2_e2p",
],
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}
//########################################################################
@ -187,7 +187,7 @@ cc_binary {
defaults: ["lsattr-defaults"],
shared_libs: lsattr_libs,
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}
cc_binary {
@ -212,7 +212,7 @@ cc_binary {
"libext2_com_err",
"libext2_e2p",
],
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}
//########################################################################
@ -228,7 +228,7 @@ cc_binary {
"libext2fs",
"libext2_uuid",
],
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
target: {
darwin: {
@ -252,5 +252,5 @@ cc_binary {
"libext2_com_err",
"libext2_quota",
],
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}

View File

@ -20,5 +20,5 @@ cc_binary {
"libext2_uuid",
"libext2_blkid",
],
system_shared_libs: ["libc"],
system_shared_libs: ["libc", "libdl"],
}