Merge pull request #133291 from raboof/sdcc-honour-dontStrip
sdcc: honour dontStrip
This commit is contained in:
commit
d7b436eac2
1 changed files with 6 additions and 0 deletions
|
@ -23,6 +23,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configureFlags = map (f: "--disable-${f}-port") excludedPorts;
|
||||
|
||||
preConfigure = ''
|
||||
if test -n "''${dontStrip-}"; then
|
||||
export STRIP=none
|
||||
fi
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Small Device C Compiler";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue