waifulib: fix configure with clang
This commit is contained in:
parent
c68b7af554
commit
872243be56
@ -299,7 +299,10 @@ class Android:
|
|||||||
return linkflags
|
return linkflags
|
||||||
|
|
||||||
def ldflags(self):
|
def ldflags(self):
|
||||||
ldflags = ['-lgcc', '-no-canonical-prefixes']
|
ldflags = ['-no-canonical-prefixes']
|
||||||
|
if not self.is_clang():
|
||||||
|
ldflags += ['-lgcc']
|
||||||
|
|
||||||
if self.is_clang() or self.is_host():
|
if self.is_clang() or self.is_host():
|
||||||
ldflags += ['-stdlib=libstdc++']
|
ldflags += ['-stdlib=libstdc++']
|
||||||
if self.is_arm():
|
if self.is_arm():
|
||||||
|
Loading…
Reference in New Issue
Block a user