Skip to content

Commit

Permalink
gn build: Switch to using current_os in lib/Support/BUILD.gn.
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D56704

llvm-svn: 351166
  • Loading branch information
pcc committed Jan 15, 2019
1 parent 2581249 commit a22ebe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
Expand Up @@ -155,7 +155,7 @@ static_library("Support") {

libs = []

if (host_os == "linux") {
if (current_os == "linux" || current_os == "android") {
libs += [ "dl" ]
}
}

0 comments on commit a22ebe4

Please sign in to comment.