You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2020. It is now read-only.
-- ref: mk/config.mk--| Command line tool for stripping.stripCmdPath::ActionFilePath
stripCmdPath =do
targetPlatform <- setting TargetPlatform
top <- topDirectory
case targetPlatform of"x86_64-unknown-mingw32"->return (top -/-"inplace/mingw/bin/strip.exe")
"arm-unknown-linux"->return":"-- HACK: from the make-based system, see the ref above
_ ->return"strip"
Is this the right thing to do? There is the following comment in Settings.Builders.GhcCabal:
-- don't strip libraries when cross compiling.-- XXX we need to set --with-strip= (stripCmdPath :: Action FilePath), and if it's ':' disable-- stripping as well. As it is now, I believe we might have issues with stripping on-- windows, as I can't see a consumer of `stripCmdPath`.
The text was updated successfully, but these errors were encountered:
@izgzhen @angerman @alpmestan I've removed unused
stripCmdPath
:Is this the right thing to do? There is the following comment in
Settings.Builders.GhcCabal
:The text was updated successfully, but these errors were encountered: