X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/333cf156425b06d0a1c8f37679207204971d040f..2d37e348a09783cda723c7019640ee69de168324:/src/smpi/smpi_main.c diff --git a/src/smpi/smpi_main.c b/src/smpi/smpi_main.c index c38ac086f8..55b2e16a2b 100644 --- a/src/smpi/smpi_main.c +++ b/src/smpi/smpi_main.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -10,6 +10,12 @@ int main(int argc, char **argv) { + if (getenv("SMPI_PRETEND_CC") != NULL) { + /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the + * configuration tools. This one is used with dlopen privatization. */ + return 0; + } + if (argc < 2) { fprintf(stderr, "Usage: smpimain \n"); exit(1);