bintools-wrapper: fix static check platform
This was moved in 1a5bd697ad
,
the preceding check was updated from hostPlatform to targetPlatform, but these got missed.
This commit is contained in:
parent
95f9eedf09
commit
790cc209ea
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@
|
|||
# Except when:
|
||||
# - static aarch64, where compilation works, but produces segfaulting dynamically linked binaries.
|
||||
# - static armv7l, where compilation fails.
|
||||
&& !(hostPlatform.isAarch && hostPlatform.isStatic)
|
||||
&& !(targetPlatform.isAarch && targetPlatform.isStatic)
|
||||
) "pie"
|
||||
|
||||
# Darwin code signing support utilities
|
||||
|
|
Loading…
Reference in a new issue