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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/* -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 99; -*- */
/* vim: set ts=4 sw=4 et tw=99: */
/*
Copyright (C) 2012 Lubos Lunak <l.lunak@suse.cz>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
Older icecream versions assume the compiler is always GCC. This can
be fixed on the local side, but remote nodes would need icecream upgrade.
As a workaround icecc-create-env includes this wrapper binary in the environment
if clang is to be used as well, that will either call clang or the real gcc.
Which one depends on an extra argument added by icecream.
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
//#define DEBUG
int main(int argc, char *argv[])
{
bool iscxx = false;
int argv0len = strlen(argv[0]);
if (argv0len > 2 && argv[0][argv0len - 1] == '+' && argv[0][argv0len - 2] == '+') {
iscxx = true;
}
#ifdef DEBUG
fprintf(stderr, "Args1:\n");
for (int i = 0; i < argc; ++i) {
fprintf(stderr, "%s\n", argv[i]);
}
fprintf(stderr, "\n");
#endif
bool isclang = argc >= 2 && strcmp(argv[1], "clang") == 0; // the extra argument from icecream
// 1 extra for -no-canonical-prefixes
char **args = new char*[argc + 2];
args[0] = new char[strlen(argv[0]) + 20];
strcpy(args[0], argv[0]);
char *separator = strrchr(args[0], '/');
if (separator == NULL) {
args[0][0] = '\0';
} else {
separator[1] = '\0'; // after the separator
}
if (isclang) {
strcat(args[0], "clang");
} else if (iscxx) {
strcat(args[0], "g++.bin");
} else {
strcat(args[0], "gcc.bin");
}
int pos = 1;
if (isclang) {
args[pos++] = strdup("-no-canonical-prefixes"); // otherwise clang tries to access /proc/self/exe
// clang wants the -x argument early, otherwise it seems to ignore it
// (and treats the file as already preprocessed)
int x_arg_pos = -1;
for (int i = 2; // 2 - skip the extra "clang" argument
i < argc;
++i) {
if (strcmp(argv[i], "-x") == 0 && i + 1 < argc
&& (strcmp(argv[i + 1], "c") == 0 || strcmp(argv[i + 1], "c++") == 0)) {
x_arg_pos = i;
args[pos++] = strdup("-x");
args[pos++] = strdup(argv[i + 1]);
break;
}
}
for (int i = 2; // 2 - skip the extra "clang" argument
i < argc;
++i) {
// strip options that icecream adds but clang doesn't know or need
if (strcmp(argv[i], "-fpreprocessed") == 0) {
continue; // clang doesn't know this (it presumably needs to always preprocess anyway)
}
if (strcmp(argv[i], "--param") == 0 && i + 1 < argc) {
if (strncmp(argv[i + 1], "ggc-min-expand=", strlen("ggc-min-expand=")) == 0
|| strncmp(argv[i + 1], "ggc-min-heapsize=", strlen("ggc-min-heapsize=")) == 0) {
// drop --param and the parameter itself
++i;
continue;
}
}
if (i == x_arg_pos) {
++i; // skip following
continue; // and skip this one
}
args[pos++] = strdup(argv[i]);
}
} else { // !isclang , just copy the arguments
for (int i = 1; i < argc; ++i) {
args[pos++] = strdup(argv[i]);
}
}
args[pos++] = NULL;
assert(pos <= argc + 2);
#ifdef DEBUG
fprintf(stderr, "Args2:\n");
for (int i = 0; i < pos; ++i) {
fprintf(stderr, "%s\n", args[i]);
}
fprintf(stderr, "\n");
#endif
execv(args[0], args);
fprintf(stderr, "execv failed\n");
exit(1);
}
|