]> granicus.if.org Git - llvm/commitdiff
gn build: Switch to using current_os in lib/Support/BUILD.gn.
authorPeter Collingbourne <peter@pcc.me.uk>
Tue, 15 Jan 2019 07:17:03 +0000 (07:17 +0000)
committerPeter Collingbourne <peter@pcc.me.uk>
Tue, 15 Jan 2019 07:17:03 +0000 (07:17 +0000)
Differential Revision: https://reviews.llvm.org/D56704

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351166 91177308-0d34-0410-b5e6-96231b3b80d8

utils/gn/secondary/llvm/lib/Support/BUILD.gn

index 84ae80fbcfa26856e2523af2413eda2a58603663..e17f2a380924e193a64005fe82a192325d497cca 100644 (file)
@@ -155,7 +155,7 @@ static_library("Support") {
 
   libs = []
 
-  if (host_os == "linux") {
+  if (current_os == "linux" || current_os == "android") {
     libs += [ "dl" ]
   }
 }