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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
|
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2007-2021 Cisco Systems, Inc. All rights reserved
* Copyright (c) 2007-2013 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2018-2022 Amazon.com, Inc. or its affiliates. All Rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal_config.h"
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif /* HAVE_SYS_STAT_H */
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif /* HAVE_SYS_TYPES_H */
#ifdef HAVE_REGEX_H
# include <regex.h>
#endif
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif /* HAVE_SYS_WAIT_H */
#include <string.h>
#include "opal/constants.h"
#include "opal/mca/installdirs/installdirs.h"
#include "opal/runtime/opal.h"
#include "opal/util/argv.h"
#include "opal/util/basename.h"
#include "opal/util/error.h"
#include "opal/util/few.h"
#include "opal/util/keyval_parse.h"
#include "opal/util/opal_environ.h"
#include "opal/util/os_path.h"
#include "opal/util/path.h"
#include "opal/util/printf.h"
#include "opal/util/show_help.h"
#define OPAL_INCLUDE_FLAG "-I"
#define OPAL_LIBDIR_FLAG "-L"
static const char * filtered_args[] = { "-I/usr/include",
"-L/usr/lib",
"-L/usr/lib64",
NULL };
/* This structure is used to represent the config file read in during
* initialization. A single file may have multiple options_data
* structures, with the compiler_args keying on which section to
* use in returning results. */
struct options_data_t {
/* compiler_args is a key to chose the right block in the case
* that there are multiple blocks in a single file. All
* arguments in compiler_args in must appear in the compiler's argv
* in order for this block to be selected. */
char **compiler_args;
/* language for this compiler. This field is only used for
* pretty-printing messages. It does not have any impact on the
* behavior of the wrapper compiler. */
char *language;
/* project name. This field is only used for pretty-printing
* messages. It does not have any impact on the behavior of the
* wrapper compiler. */
char *project;
/* project short name. The environment variables to influence
* setting of compiler flags are named <project_short>_{CPPFLAGS,
* LDFLAGS, LIBS}. */
char *project_short;
/* project release version. Used to pretty-print help strings. */
char *version;
/* Second part of the variable name to change the underlying
* compiler the wrapper compiler invokes. For example, for C,
* compiler_env should be CC, resulting in <project_short>_CC
* being the environment variable used to change the underlying
* compiler that is invoked. */
char *compiler_env;
/* Second part of the variable name to change the compiler flags
* passed to the underlying compiler. For example, for C,
* compiler_flags_env should be CFLAGS, resulting in
* <project_short>_CFLAGS being the environment variable used to
* change the CFLAGS passed to the underlying compiler. */
char *compiler_flags_env;
/* Default underlying compiler to invoke */
char *compiler;
/* Default preprocessor (ie, CPPFLAGS) to pass to underlying
* compiler. These are only passed to the underlying compiler
* when it looks like we are compiling (ie, not in a link-only
* situation). */
char **preproc_flags;
/* Default compiler flags (ie, CFLAGS) to pass to the underlying
* compiler. */
char **comp_flags;
/* Compiler flags to pass to the underlying compiler before
* comp_flags. These args are generally passed directly from
* configure options provided from the user. */
char **comp_flags_prefix;
/* Linker flags to pass to to the underlying compiler when it
* appears that we are linking. These flags will be passed to the
* underlying compiler whether or not we see -static (or friends) in
* the arguments. */
char **link_flags;
/* Linker flags to pass to to the underlying compiler when it
* appears that we are linking. These flags ONLY will be passed
* to the underlying compiler when we see -static (or friends) in
* the arguments. */
char **link_flags_static;
/* Libs flags to pass to to the underlying compiler when it
* appears that we are linking. These flags will be passed to the
* underlying compiler whether or not we see -static (or friends)
* in the arguments. */
char **libs;
/* Libs flags to pass to to the underlying compiler when it
* appears that we are linking. These flags ONLY will be passed
* to the underlying compiler when we see -static (or friends) in
* the arguments. */
char **libs_static;
/* Name of a file that should exist in ${libdir} if shared
* libraries were properly installed. Historically, this was
* used to determine what flags should be added to the compiler.
* Now it is not used. */
char *dyn_lib_file;
/* Name of a file that should exist in ${libdir} if static
* libraries were properly installed. Historically, this was
* used to determine what flags should be added to the compiler.
* Now it is not used. */
char *static_lib_file;
/* A (full path) of a file that must exist for the wrapper
* compiler to succeed. A common use case is to specify a
* language-binding specific file (for example, a C++ header file)
* when invoking an optional language binding. */
char *req_file;
/* Default includedir, before variable expansion. Almost always
* set as ${includedir} outside of multilib situations. */
char *path_includedir;
/* Default libdir, before variable expansion. Almost always set
as ${libdir} outside of multilib situations */
char *path_libdir;
};
static struct options_data_t *options_data = NULL;
/* index used by parser */
static int parse_options_idx = -1;
/* index of options specified by user */
static int user_data_idx = -1;
/* index of options to use by default */
static int default_data_idx = -1;
#define COMP_DRY_RUN 0x001
#define COMP_SHOW_ERROR 0x002
#define COMP_WANT_COMMAND 0x004
#define COMP_WANT_PREPROC 0x008
#define COMP_WANT_COMPILE 0x010
#define COMP_WANT_LINK 0x020
#define COMP_WANT_PMPI 0x040
#define COMP_WANT_STATIC 0x080
#define COMP_WANT_LINKALL 0x100
static void options_data_init(struct options_data_t *data)
{
data->compiler_args = (char **) malloc(sizeof(char *));
data->compiler_args[0] = NULL;
data->language = NULL;
data->compiler = NULL;
data->project = NULL;
data->project_short = NULL;
data->version = NULL;
data->compiler_env = NULL;
data->compiler_flags_env = NULL;
data->preproc_flags = (char **) malloc(sizeof(char *));
data->preproc_flags[0] = NULL;
data->comp_flags = (char **) malloc(sizeof(char *));
data->comp_flags[0] = NULL;
data->comp_flags_prefix = (char **) malloc(sizeof(char *));
data->comp_flags_prefix[0] = NULL;
data->link_flags = (char **) malloc(sizeof(char *));
data->link_flags[0] = NULL;
data->link_flags_static = (char **) malloc(sizeof(char *));
data->link_flags_static[0] = NULL;
data->libs = (char **) malloc(sizeof(char *));
data->libs[0] = NULL;
data->libs_static = (char **) malloc(sizeof(char *));
data->libs_static[0] = NULL;
data->dyn_lib_file = NULL;
data->static_lib_file = NULL;
data->req_file = NULL;
data->path_includedir = NULL;
data->path_libdir = NULL;
}
static void options_data_free(struct options_data_t *data)
{
if (NULL != data->compiler_args) {
opal_argv_free(data->compiler_args);
}
if (NULL != data->language) {
free(data->language);
}
if (NULL != data->compiler) {
free(data->compiler);
}
if (NULL != data->project) {
free(data->project);
}
if (NULL != data->project_short) {
free(data->project_short);
}
if (NULL != data->version) {
free(data->version);
}
if (NULL != data->compiler_env) {
free(data->compiler_env);
}
if (NULL != data->compiler_flags_env) {
free(data->compiler_flags_env);
}
opal_argv_free(data->preproc_flags);
opal_argv_free(data->comp_flags);
opal_argv_free(data->comp_flags_prefix);
opal_argv_free(data->link_flags);
opal_argv_free(data->link_flags_static);
opal_argv_free(data->libs);
opal_argv_free(data->libs_static);
if (NULL != data->dyn_lib_file) {
free(data->dyn_lib_file);
}
if (NULL != data->static_lib_file) {
free(data->static_lib_file);
}
if (NULL != data->req_file) {
free(data->req_file);
}
if (NULL != data->path_includedir) {
free(data->path_includedir);
}
if (NULL != data->path_libdir) {
free(data->path_libdir);
}
}
static void options_data_expand(const char *value)
{
/* make space for the new set of args */
parse_options_idx++;
options_data = (struct options_data_t *) realloc(options_data, sizeof(struct options_data_t)
* (parse_options_idx + 1));
options_data_init(&(options_data[parse_options_idx]));
/* if there are values, this is not the default case.
Otherwise, it's the default case... */
if (NULL != value && 0 != strcmp(value, "")) {
char **values = opal_argv_split(value, ';');
opal_argv_insert(&(options_data[parse_options_idx].compiler_args),
opal_argv_count(options_data[parse_options_idx].compiler_args), values);
opal_argv_free(values);
} else {
free(options_data[parse_options_idx].compiler_args);
options_data[parse_options_idx].compiler_args = NULL;
/* this is a default */
default_data_idx = parse_options_idx;
}
}
static int find_options_index(const char *arg)
{
int i, j;
#ifdef HAVE_REGEXEC
int args_count;
regex_t res;
#endif
for (i = 0; i <= parse_options_idx; ++i) {
if (NULL == options_data[i].compiler_args) {
continue;
}
#ifdef HAVE_REGEXEC
args_count = opal_argv_count(options_data[i].compiler_args);
for (j = 0; j < args_count; ++j) {
if (0 != regcomp(&res, options_data[i].compiler_args[j], REG_NOSUB)) {
return -1;
}
if (0 == regexec(&res, arg, (size_t) 0, NULL, 0)) {
regfree(&res);
return i;
}
regfree(&res);
}
#else
for (j = 0; j < opal_argv_count(options_data[i].compiler_args); ++j) {
if (0 == strcmp(arg, options_data[i].compiler_args[j])) {
return i;
}
}
#endif
}
return -1;
}
static void expand_flags(char **argv)
{
int i;
char *tmp;
for (i = 0; argv[i] != NULL; ++i) {
tmp = opal_install_dirs_expand(argv[i]);
if (tmp != argv[i]) {
free(argv[i]);
argv[i] = tmp;
}
}
}
static void filter_flags(char*** argvp)
{
int argc, idx;
argc = opal_argv_count(*argvp);
idx = 0;
while (idx < argc) {
char *arg = (*argvp)[idx];
size_t j = 0;
bool found = false;
while (filtered_args[j] != NULL) {
if (0 == strcmp(arg, filtered_args[j])) {
opal_argv_delete(&argc, argvp, idx, 1);
found = true;
break;
}
j++;
}
if (!found) {
/* skip moving the idx pointer if we found an entry (since
* the previous idx + 1 entry is the new idx pointer). Note
* that argc might have moved, so the outer while loop make still
* give a different answer to its conditional. */
idx++;
}
}
}
static void data_callback(const char *key, const char *value)
{
/* handle case where text file does not contain any special
compiler options field */
if (parse_options_idx < 0 && 0 != strcmp(key, "compiler_args")) {
options_data_expand(NULL);
}
if (0 == strcmp(key, "compiler_args")) {
options_data_expand(value);
} else if (0 == strcmp(key, "language")) {
if (NULL != value) {
options_data[parse_options_idx].language = strdup(value);
}
} else if (0 == strcmp(key, "compiler")) {
if (NULL != value) {
options_data[parse_options_idx].compiler = strdup(value);
}
} else if (0 == strcmp(key, "project")) {
if (NULL != value) {
options_data[parse_options_idx].project = strdup(value);
}
} else if (0 == strcmp(key, "version")) {
if (NULL != value) {
options_data[parse_options_idx].version = strdup(value);
}
} else if (0 == strcmp(key, "preprocessor_flags")) {
char **values = opal_argv_split(value, ' ');
opal_argv_insert(&options_data[parse_options_idx].preproc_flags,
opal_argv_count(options_data[parse_options_idx].preproc_flags), values);
expand_flags(options_data[parse_options_idx].preproc_flags);
filter_flags(&options_data[parse_options_idx].preproc_flags);
opal_argv_free(values);
} else if (0 == strcmp(key, "compiler_flags")) {
char **values = opal_argv_split(value, ' ');
opal_argv_insert(&options_data[parse_options_idx].comp_flags,
opal_argv_count(options_data[parse_options_idx].comp_flags), values);
expand_flags(options_data[parse_options_idx].comp_flags);
filter_flags(&options_data[parse_options_idx].comp_flags);
opal_argv_free(values);
} else if (0 == strcmp(key, "compiler_flags_prefix")) {
char **values = opal_argv_split(value, ' ');
opal_argv_insert(&options_data[parse_options_idx].comp_flags_prefix,
opal_argv_count(options_data[parse_options_idx].comp_flags_prefix),
values);
expand_flags(options_data[parse_options_idx].comp_flags_prefix);
opal_argv_free(values);
} else if (0 == strcmp(key, "linker_flags")) {
char **values = opal_argv_split(value, ' ');
opal_argv_insert(&options_data[parse_options_idx].link_flags,
opal_argv_count(options_data[parse_options_idx].link_flags), values);
expand_flags(options_data[parse_options_idx].link_flags);
filter_flags(&options_data[parse_options_idx].link_flags);
opal_argv_free(values);
} else if (0 == strcmp(key, "linker_flags_static")) {
char **values = opal_argv_split(value, ' ');
opal_argv_insert(&options_data[parse_options_idx].link_flags_static,
opal_argv_count(options_data[parse_options_idx].link_flags_static), values);
expand_flags(options_data[parse_options_idx].link_flags_static);
filter_flags(&options_data[parse_options_idx].link_flags_static);
opal_argv_free(values);
} else if (0 == strcmp(key, "libs")) {
char **values = opal_argv_split(value, ' ');
opal_argv_insert(&options_data[parse_options_idx].libs,
opal_argv_count(options_data[parse_options_idx].libs), values);
opal_argv_free(values);
} else if (0 == strcmp(key, "libs_static")) {
char **values = opal_argv_split(value, ' ');
opal_argv_insert(&options_data[parse_options_idx].libs_static,
opal_argv_count(options_data[parse_options_idx].libs_static), values);
opal_argv_free(values);
} else if (0 == strcmp(key, "dyn_lib_file")) {
if (NULL != value) {
options_data[parse_options_idx].dyn_lib_file = strdup(value);
}
} else if (0 == strcmp(key, "static_lib_file")) {
if (NULL != value) {
options_data[parse_options_idx].static_lib_file = strdup(value);
}
} else if (0 == strcmp(key, "required_file")) {
if (NULL != value) {
options_data[parse_options_idx].req_file = strdup(value);
}
} else if (0 == strcmp(key, "project_short")) {
if (NULL != value) {
options_data[parse_options_idx].project_short = strdup(value);
}
} else if (0 == strcmp(key, "compiler_env")) {
if (NULL != value) {
options_data[parse_options_idx].compiler_env = strdup(value);
}
} else if (0 == strcmp(key, "compiler_flags_env")) {
if (NULL != value) {
options_data[parse_options_idx].compiler_flags_env = strdup(value);
}
} else if (0 == strcmp(key, "includedir")) {
if (NULL != value) {
options_data[parse_options_idx].path_includedir = opal_install_dirs_expand(value);
}
} else if (0 == strcmp(key, "libdir")) {
if (NULL != value) {
options_data[parse_options_idx].path_libdir = opal_install_dirs_expand(value);
}
}
}
static int data_init(const char *appname)
{
int ret;
char *datafile;
/* now load the data */
opal_asprintf(&datafile, "%s%s%s-wrapper-data.txt", opal_install_dirs.opaldatadir,
OPAL_PATH_SEP, appname);
if (NULL == datafile) {
return OPAL_ERR_TEMP_OUT_OF_RESOURCE;
}
ret = opal_util_keyval_parse(datafile, data_callback);
if (OPAL_SUCCESS != ret) {
fprintf(stderr, "Cannot open configuration file %s\n", datafile);
}
free(datafile);
return ret;
}
static int data_finalize(void)
{
int i;
for (i = 0; i <= parse_options_idx; ++i) {
options_data_free(&(options_data[i]));
}
free(options_data);
return OPAL_SUCCESS;
}
/*
* Print the flags in args, stripping off pattern (which must be a
* simple exact match string, no regex) from the front of every
* argument in args.
*/
static void print_flags(char **args, char *pattern)
{
int i;
bool found = false;
for (i = 0; args[i] != NULL; ++i) {
if (0 == strncmp(args[i], pattern, strlen(pattern))) {
if (found) {
printf(" ");
}
printf("%s", args[i] + strlen(pattern));
found = true;
}
}
if (found) {
printf("\n");
}
}
static void load_env_data(const char *project, const char *flag, char **data)
{
char *envname;
char *envvalue;
if (NULL == project || NULL == flag) {
return;
}
opal_asprintf(&envname, "%s_MPI%s", project, flag);
if (NULL == (envvalue = getenv(envname))) {
free(envname);
opal_asprintf(&envname, "%s_%s", project, flag);
if (NULL == (envvalue = getenv(envname))) {
free(envname);
return;
}
}
free(envname);
if (NULL != *data) {
free(*data);
}
*data = strdup(envvalue);
}
static void load_env_data_argv(const char *project, const char *flag, char ***data)
{
char *envname;
char *envvalue;
if (NULL == project || NULL == flag) {
return;
}
opal_asprintf(&envname, "%s_MPI%s", project, flag);
if (NULL == (envvalue = getenv(envname))) {
free(envname);
opal_asprintf(&envname, "%s_%s", project, flag);
if (NULL == (envvalue = getenv(envname))) {
free(envname);
return;
}
}
free(envname);
if (NULL != *data) {
opal_argv_free(*data);
}
*data = opal_argv_split(envvalue, ' ');
}
int main(int argc, char *argv[])
{
int exit_status = 0, ret, flags = 0, i;
int exec_argc = 0, user_argc = 0;
char **exec_argv = NULL, **user_argv = NULL;
char *exec_command, *base_argv0 = NULL;
bool disable_flags = true;
bool real_flag = false;
if (OPAL_SUCCESS != (ret = opal_init_util(&argc, &argv))) {
return ret;
}
/****************************************************
*
* Setup compiler information
*
****************************************************/
base_argv0 = opal_basename(argv[0]);
#if defined(EXEEXT)
if (0 != strlen(EXEEXT)) {
char extension[] = EXEEXT;
char *temp = strstr(base_argv0, extension);
char *old_match = temp;
while (NULL != temp) {
old_match = temp;
temp = strstr(temp + 1, extension);
}
/* Only if there was a match of .exe, erase the last occurrence of .exe */
if (NULL != old_match) {
*old_match = '\0';
}
}
#endif /* defined(EXEEXT) */
if (OPAL_SUCCESS != (ret = data_init(base_argv0))) {
fprintf(stderr, "Error parsing data file %s: %s\n", base_argv0, opal_strerror(ret));
return ret;
}
for (i = 1; i < argc && user_data_idx < 0; ++i) {
user_data_idx = find_options_index(argv[i]);
}
/* if we didn't find a match, look for the NULL (base case) options */
if (user_data_idx < 0) {
user_data_idx = default_data_idx;
}
/* if we still didn't find a match, abort */
if (user_data_idx < 0) {
char *flat = opal_argv_join(argv, ' ');
opal_show_help("help-opal-wrapper.txt", "no-options-support", true, base_argv0, flat, NULL);
free(flat);
exit(1);
}
/* compiler */
load_env_data(options_data[user_data_idx].project_short,
options_data[user_data_idx].compiler_env, &options_data[user_data_idx].compiler);
/* preprocessor flags */
load_env_data_argv(options_data[user_data_idx].project_short, "CPPFLAGS",
&options_data[user_data_idx].preproc_flags);
/* compiler flags */
load_env_data_argv(options_data[user_data_idx].project_short,
options_data[user_data_idx].compiler_flags_env,
&options_data[user_data_idx].comp_flags);
/* linker flags */
load_env_data_argv(options_data[user_data_idx].project_short, "LDFLAGS",
&options_data[user_data_idx].link_flags);
/* libs */
load_env_data_argv(options_data[user_data_idx].project_short, "LIBS",
&options_data[user_data_idx].libs);
/****************************************************
*
* Sanity Checks
*
****************************************************/
if (NULL != options_data[user_data_idx].req_file) {
/* make sure the language is supported */
if (0 == strcmp(options_data[user_data_idx].req_file, "not supported")) {
opal_show_help("help-opal-wrapper.txt", "no-language-support", true,
options_data[user_data_idx].language, base_argv0, NULL);
exit_status = 1;
goto cleanup;
}
if (options_data[user_data_idx].req_file[0] != '\0') {
char *filename;
struct stat buf;
filename = opal_os_path(false, options_data[user_data_idx].path_libdir,
options_data[user_data_idx].req_file, NULL);
if (0 != stat(filename, &buf)) {
opal_show_help("help-opal-wrapper.txt", "file-not-found", true, base_argv0,
options_data[user_data_idx].req_file,
options_data[user_data_idx].language, NULL);
}
}
}
/****************************************************
*
* Parse user flags
*
****************************************************/
flags = COMP_WANT_COMMAND | COMP_WANT_PREPROC | COMP_WANT_COMPILE | COMP_WANT_LINK;
user_argv = opal_argv_copy(argv + 1);
user_argc = opal_argv_count(user_argv);
for (i = 0; i < user_argc; ++i) {
if (0 == strncmp(user_argv[i], "-showme", strlen("-showme"))
|| 0 == strncmp(user_argv[i], "--showme", strlen("--showme"))
|| 0 == strncmp(user_argv[i], "-show", strlen("-show"))
|| 0 == strncmp(user_argv[i], "--show", strlen("--show"))) {
bool done_now = false;
/* check for specific things we want to see. First three
still invoke all the building routines. Last set want
to parse out certain flags, so we don't go through the
normal build routine - skip to cleanup. */
if (0 == strncmp(user_argv[i], "-showme:command", strlen("-showme:command"))
|| 0 == strncmp(user_argv[i], "--showme:command", strlen("--showme:command"))) {
flags = COMP_WANT_COMMAND;
/* we know what we want, so don't process any more args */
done_now = true;
} else if (0 == strncmp(user_argv[i], "-showme:compile", strlen("-showme:compile"))
|| 0
== strncmp(user_argv[i], "--showme:compile",
strlen("--showme:compile"))) {
flags = COMP_WANT_PREPROC | COMP_WANT_COMPILE;
/* we know what we want, so don't process any more args */
done_now = true;
} else if (0 == strncmp(user_argv[i], "-showme:link", strlen("-showme:link"))
|| 0 == strncmp(user_argv[i], "--showme:link", strlen("--showme:link"))) {
flags = COMP_WANT_COMPILE | COMP_WANT_LINK;
/* we know what we want, so don't process any more args */
done_now = true;
} else if (0 == strncmp(user_argv[i], "-showme:incdirs", strlen("-showme:incdirs"))
|| 0
== strncmp(user_argv[i], "--showme:incdirs",
strlen("--showme:incdirs"))) {
print_flags(options_data[user_data_idx].preproc_flags, OPAL_INCLUDE_FLAG);
goto cleanup;
} else if (0 == strncmp(user_argv[i], "-showme:libdirs_static", strlen("-showme:libdirs_static"))
|| 0
== strncmp(user_argv[i], "--showme:libdirs_static",
strlen("--showme:libdirs_static"))) {
char **all_args = NULL;
int args_count;
all_args = opal_argv_copy(options_data[user_data_idx].link_flags);
args_count = opal_argv_count(all_args);
opal_argv_insert(&all_args, args_count, options_data[user_data_idx].link_flags_static);
print_flags(all_args, OPAL_LIBDIR_FLAG);
opal_argv_free(all_args);
goto cleanup;
} else if (0 == strncmp(user_argv[i], "-showme:libdirs", strlen("-showme:libdirs"))
|| 0
== strncmp(user_argv[i], "--showme:libdirs",
strlen("--showme:libdirs"))) {
print_flags(options_data[user_data_idx].link_flags, OPAL_LIBDIR_FLAG);
goto cleanup;
} else if (0 == strncmp(user_argv[i], "-showme:libs_static", strlen("-showme:libs_static"))
|| 0 == strncmp(user_argv[i], "--showme:libs_static", strlen("--showme:libs_static"))) {
char **all_args = NULL;
int args_count;
all_args = opal_argv_copy(options_data[user_data_idx].libs);
args_count = opal_argv_count(all_args);
opal_argv_insert(&all_args, args_count, options_data[user_data_idx].libs_static);
print_flags(all_args, "-l");
opal_argv_free(all_args);
goto cleanup;
} else if (0 == strncmp(user_argv[i], "-showme:libs", strlen("-showme:libs"))
|| 0 == strncmp(user_argv[i], "--showme:libs", strlen("--showme:libs"))) {
print_flags(options_data[user_data_idx].libs, "-l");
goto cleanup;
} else if (0 == strncmp(user_argv[i], "-showme:version", strlen("-showme:version"))
|| 0
== strncmp(user_argv[i], "--showme:version",
strlen("--showme:version"))) {
char *str;
str = opal_show_help_string("help-opal-wrapper.txt", "version", false, base_argv0,
options_data[user_data_idx].project,
options_data[user_data_idx].version,
options_data[user_data_idx].language, NULL);
if (NULL != str) {
printf("%s", str);
free(str);
}
goto cleanup;
} else if (0 == strncmp(user_argv[i], "-showme:help", strlen("-showme:help"))
|| 0 == strncmp(user_argv[i], "--showme:help", strlen("--showme:help"))) {
char *str;
str = opal_show_help_string("help-opal-wrapper.txt", "usage", false, base_argv0,
options_data[user_data_idx].project, NULL);
if (NULL != str) {
printf("%s", str);
free(str);
}
exit_status = 0;
goto cleanup;
} else if (0 == strncmp(user_argv[i], "-showme:", strlen("-showme:"))
|| 0 == strncmp(user_argv[i], "--showme:", strlen("--showme:"))) {
fprintf(stderr, "%s: unrecognized option: %s\n", base_argv0, user_argv[i]);
fprintf(stderr, "Type '%s --showme:help' for usage.\n", argv[0]);
exit_status = 1;
goto cleanup;
}
flags |= (COMP_DRY_RUN | COMP_SHOW_ERROR);
/* remove element from user_argv */
opal_argv_delete(&user_argc, &user_argv, i, 1);
--i;
if (done_now) {
disable_flags = false;
break;
}
} else if (0 == strcmp(user_argv[i], "-c")) {
flags &= ~COMP_WANT_LINK;
real_flag = true;
} else if (0 == strcmp(user_argv[i], "-E") || 0 == strcmp(user_argv[i], "-M")) {
flags &= ~(COMP_WANT_COMPILE | COMP_WANT_LINK);
real_flag = true;
} else if (0 == strcmp(user_argv[i], "-S")) {
flags &= ~COMP_WANT_LINK;
real_flag = true;
} else if (0 == strcmp(user_argv[i], "-lpmpi")) {
flags |= COMP_WANT_PMPI;
/* remove element from user_argv */
opal_argv_delete(&user_argc, &user_argv, i, 1);
--i;
} else if (0 == strcmp(user_argv[i], "-static") || 0 == strcmp(user_argv[i], "--static")
|| 0 == strcmp(user_argv[i], "-Bstatic")
|| 0 == strcmp(user_argv[i], "-Wl,-static")
|| 0 == strcmp(user_argv[i], "-Wl,--static")
|| 0 == strcmp(user_argv[i], "-Wl,-Bstatic")) {
flags |= COMP_WANT_STATIC;
} else if (0 == strcmp(user_argv[i], "-dynamic") || 0 == strcmp(user_argv[i], "--dynamic")
|| 0 == strcmp(user_argv[i], "-Bdynamic")
|| 0 == strcmp(user_argv[i], "-Wl,-dynamic")
|| 0 == strcmp(user_argv[i], "-Wl,--dynamic")
|| 0 == strcmp(user_argv[i], "-Wl,-Bdynamic")) {
flags &= ~COMP_WANT_STATIC;
} else if (0 == strcmp(user_argv[i], "--openmpi:linkall")) {
/* This is an intentionally undocumented wrapper compiler
switch. It should only be used by Open MPI developers
-- not end users. It will cause mpicc to use the
static library list, even if we're compiling
dynamically (i.e., it'll specifically -l@OPAL_LIB_NAME@
(and all their dependent libs)). We provide
this flag for test MPI applications that also invoke
OPAL function calls.
On some systems (e.g., OS X), if the top-level
application calls OPAL functions and you don't -l
OPAL, then the functions won't be resolved at
link time (i.e., the implicit library dependencies of
libmpi won't be pulled in at link time), and therefore
the link will fail. This flag will cause the wrapper
to explicitly list the OPAL libs on the
underlying compiler command line, so the application
will therefore link properly. */
flags |= COMP_WANT_STATIC;
/* remove element from user_argv */
opal_argv_delete(&user_argc, &user_argv, i, 1);
} else if ('-' != user_argv[i][0]) {
disable_flags = false;
flags |= COMP_SHOW_ERROR;
real_flag = true;
} else {
/* if the option flag is one that we use to determine
which set of compiler data to use, don't count it as a
real option */
if (find_options_index(user_argv[i]) < 0) {
real_flag = true;
}
}
}
/* clear out the want_flags if we got no arguments not starting
with a - (dash) and -showme wasn't given OR -showme was given
and we had at least one more non-showme argument that started
with a - (dash) and no other non-dash arguments. Some examples:
opal_wrapper : clear our flags
opal_wrapper -v : clear our flags
opal_wrapper -E a.c : don't clear our flags
opal_wrapper a.c : don't clear our flags
opal_wrapper -showme : don't clear our flags
opal_wrapper -showme -v : clear our flags
opal_wrapper -showme -E a.c : don't clear our flags
opal_wrapper -showme a.c : don't clear our flags
*/
if (disable_flags && !((flags & COMP_DRY_RUN) && !real_flag)) {
flags &= ~(COMP_WANT_PREPROC | COMP_WANT_COMPILE | COMP_WANT_LINK);
}
/****************************************************
*
* Assemble the command line
*
****************************************************/
/* compiler (may be multiple arguments, so split) */
if (flags & COMP_WANT_COMMAND) {
exec_argv = opal_argv_split(options_data[user_data_idx].compiler, ' ');
exec_argc = opal_argv_count(exec_argv);
} else {
exec_argv = (char **) malloc(sizeof(char *));
exec_argv[0] = NULL;
exec_argc = 0;
}
/* This error would normally not happen unless the user edits the
wrapper data files manually */
if (NULL == exec_argv) {
opal_show_help("help-opal-wrapper.txt", "no-compiler-specified", true);
return 1;
}
if (flags & COMP_WANT_COMPILE) {
opal_argv_insert(&exec_argv, exec_argc, options_data[user_data_idx].comp_flags_prefix);
exec_argc = opal_argv_count(exec_argv);
}
/* Per https://svn.open-mpi.org/trac/ompi/ticket/2201, add all the
user arguments before anything else. */
opal_argv_insert(&exec_argv, exec_argc, user_argv);
exec_argc = opal_argv_count(exec_argv);
/* preproc flags */
if (flags & COMP_WANT_PREPROC) {
opal_argv_insert(&exec_argv, exec_argc, options_data[user_data_idx].preproc_flags);
exec_argc = opal_argv_count(exec_argv);
}
/* compiler flags */
if (flags & COMP_WANT_COMPILE) {
opal_argv_insert(&exec_argv, exec_argc, options_data[user_data_idx].comp_flags);
exec_argc = opal_argv_count(exec_argv);
}
/* link flags and libs */
if (flags & COMP_WANT_LINK) {
/* Configure will set the libs, libs_static, link_flags, and
link_flags_static based on whether or not shared and static
libraries are enabled (see the large comment in
opal_setup_wrappers.m4). The wrapper will always add libs
and link_flags in a link situation, and should add the
_static variants if -static was seen. */
opal_argv_insert(&exec_argv, exec_argc, options_data[user_data_idx].link_flags);
exec_argc = opal_argv_count(exec_argv);
if (flags & COMP_WANT_STATIC) {
opal_argv_insert(&exec_argv, exec_argc, options_data[user_data_idx].link_flags_static);
exec_argc = opal_argv_count(exec_argv);
}
opal_argv_insert(&exec_argv, exec_argc, options_data[user_data_idx].libs);
exec_argc = opal_argv_count(exec_argv);
if (flags & COMP_WANT_STATIC) {
opal_argv_insert(&exec_argv, exec_argc, options_data[user_data_idx].libs_static);
exec_argc = opal_argv_count(exec_argv);
}
}
/****************************************************
*
* Execute the command
*
****************************************************/
if (flags & COMP_DRY_RUN) {
exec_command = opal_argv_join(exec_argv, ' ');
printf("%s\n", exec_command);
free(exec_command);
} else {
char *tmp;
tmp = opal_path_findv(exec_argv[0], 0, environ, NULL);
if (NULL == tmp) {
opal_show_help("help-opal-wrapper.txt", "no-compiler-found", true, exec_argv[0], NULL);
errno = 0;
exit_status = 1;
} else {
int status;
free(exec_argv[0]);
exec_argv[0] = tmp;
ret = opal_few(exec_argv, &status);
exit_status = WIFEXITED(status) ? WEXITSTATUS(status)
: (WIFSIGNALED(status)
? WTERMSIG(status)
: (WIFSTOPPED(status) ? WSTOPSIG(status) : 255));
if ((OPAL_SUCCESS != ret) || ((0 != exit_status) && (flags & COMP_SHOW_ERROR))) {
if (OPAL_SUCCESS != ret) {
exec_command = opal_argv_join(exec_argv, ' ');
opal_show_help("help-opal-wrapper.txt", "spawn-failed", true, exec_argv[0],
strerror(status), exec_command, NULL);
free(exec_command);
}
}
}
}
/****************************************************
*
* Cleanup
*
****************************************************/
cleanup:
opal_argv_free(exec_argv);
opal_argv_free(user_argv);
if (NULL != base_argv0) {
free(base_argv0);
}
if (OPAL_SUCCESS != (ret = data_finalize())) {
return ret;
}
if (OPAL_SUCCESS != (ret = opal_finalize_util())) {
return ret;
}
return exit_status;
}
|