1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

gn build: Switch to using current_os in lib/Support/BUILD.gn.

Differential Revision: https://reviews.llvm.org/D56704

llvm-svn: 351166
This commit is contained in:
Peter Collingbourne 2019-01-15 07:17:03 +00:00
parent ddac908099
commit 7f9dca5ace

View File

@ -155,7 +155,7 @@ static_library("Support") {
libs = []
if (host_os == "linux") {
if (current_os == "linux" || current_os == "android") {
libs += [ "dl" ]
}
}