Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

-working-dir flag ignored for C files
It seems that the `-working-dir` flag does not work correctly when C files are involved (or presumably other non-Haskell source files). Example: ```hs -- dir/Main.hs {-# LANGUAGE ForeignFunctionInterface #-} module Main where foreign import ccall "hello" hello :: IO () main :: IO () main = hello ``` ```c // dir/Aux.c #include <stdio.h> void hello() { printf("hi"); } ``` ``` > ghc -working-dir dir Main.hs Aux.c <command line>: does not exist: Aux.c > cd dir && ghc Main.hs Aux.c ... works fine ```
issue