ghc-9.13: The GHC API
Safe HaskellNone
LanguageGHC2021

GHC.SysTools.Process

Synopsis

Documentation

runSomethingResponseFile :: Logger -> TmpFs -> TempDir -> ([String] -> [String]) -> String -> String -> [Option] -> Maybe [(String, String)] -> IO () Source #

Run a command, placing the arguments in an external response file.

This command is used in order to avoid overlong command line arguments on Windows. The command line arguments are first written to an external, temporary response file, and then passed to the linker via @filepath. response files for passing them in. See:

https://gcc.gnu.org/wiki/Response_Files https://gitlab.haskell.org/ghc/ghc/issues/10777

runSomethingWith :: Logger -> String -> String -> [Option] -> ([String] -> IO (ExitCode, a)) -> IO a Source #