mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
makeBinaryWrapper: unset NIX_CFLAGS
Prevent the wrapper from being affected by the derivation's CFLAGS, which may not even apply to GCC.
This commit is contained in:
parent
532ebf6b57
commit
f8cc8ff575
@ -33,6 +33,8 @@ assertExecutable() {
|
||||
# To troubleshoot a binary wrapper after you compiled it,
|
||||
# use the `strings` command or open the binary file in a text editor.
|
||||
makeWrapper() {
|
||||
local NIX_CFLAGS_COMPILE NIX_CFLAGS_LINK
|
||||
unset NIX_CFLAGS_COMPILE NIX_CFLAGS_LINK
|
||||
local original="$1"
|
||||
local wrapper="$2"
|
||||
shift 2
|
||||
|
Loading…
Reference in New Issue
Block a user