summaryrefslogtreecommitdiff
path: root/driver/gcc/gcc.c
blob: 059fbd4142f3f6a3dcee3a3fe55bd34940f2c7a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

/* gcc on mingw is hardcoded to use /mingw (which is c:/mingw) to
   find various files. If this is a different version of mingw to the
   one that we have in the GHC tree then things can go wrong. We
   therefore need to add various -B flags to the gcc commandline,
   so that it uses our in-tree mingw. Hence this wrapper. */

#include "cwrapper.h"
#include "getLocation.h"

int main(int argc, char** argv) {
    char *binDir;
    char *exePath;
    char *preArgv[4];

    binDir = getExecutablePath();
    exePath = mkString("%s/realgcc.exe", binDir);

    /* Without these -B args, gcc will still work. However, if you
       have a mingw installation in c:/mingw then it will use files
       from that in preference to the in-tree files. */
    preArgv[0] = mkString("-B%s", binDir);
    preArgv[1] = mkString("-B%s/../lib", binDir);
    preArgv[2] = mkString("-B%s/../lib/gcc/mingw32/3.4.5", binDir);
    preArgv[3] = mkString("-B%s/../libexec/gcc/mingw32/3.4.5", binDir);

    run(exePath, 4, preArgv, argc - 1, argv + 1);
}