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
This was during the Setup.hs copy step, which sees Cabal (the library), by default, run strip after having moved the executable file to a new location. For example, during stack --verbose build --cabal-verbose --ghc-options=-v:
While building
happy-1.20.1.1
with GHC 9.4.8 on Windows in CI, @hausfell experienced:This was during the
Setup.hs copy
step, which sees Cabal (the library), by default, runstrip
after having moved the executable file to a new location. For example, duringstack --verbose build --cabal-verbose --ghc-options=-v
:I think it must be
strip.exe
seeking to overwritehappy.exe
when it is not yet free to do so, for some reason.Cabal's
Distribution.Simple.GHC.installExe
has (extract):So, it looks to me that things are properly sequenced. Could it be a problem within the MSYS2-supplied
strip.exe
itself?The text was updated successfully, but these errors were encountered: