diff options
author | Lukas Larsson <[email protected]> | 2012-06-01 10:53:19 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2012-06-01 10:53:19 +0200 |
commit | 4c70878ddf1ef065e7e83395c96a7d9e9c4e27b0 (patch) | |
tree | aa4c8c4fb80ad16b3185d94dc0a972b17fe1082d /erts/test/utils/gccifier.c | |
parent | 523516d049cd246fd68f5ec69c56fd4d5b8172f5 (diff) | |
parent | b82c337dfce2d5bc1e435ebaa6060cb982bc5ad6 (diff) | |
download | otp-4c70878ddf1ef065e7e83395c96a7d9e9c4e27b0.tar.gz otp-4c70878ddf1ef065e7e83395c96a7d9e9c4e27b0.tar.bz2 otp-4c70878ddf1ef065e7e83395c96a7d9e9c4e27b0.zip |
Merge branch 'maint'
* maint:
Ignore calls to wx* modules if it is undefined
Fix erl_interface testcases
Update gccifier to respect -link option
Extand timetrap for escript tests
Fix compilation issues on windows and Ubuntu 12.04
Ignore common_test bootstrap
Diffstat (limited to 'erts/test/utils/gccifier.c')
-rw-r--r-- | erts/test/utils/gccifier.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/test/utils/gccifier.c b/erts/test/utils/gccifier.c index 64de764260..a6b8a340a1 100644 --- a/erts/test/utils/gccifier.c +++ b/erts/test/utils/gccifier.c @@ -231,6 +231,9 @@ main(int argc, char *argv[]) CHECK_FIRST_LINK_ARG; save_arg(&link_args, "-libpath:", arg, NULL); } + else if (strcmp("-link",arg) == 0) { + CHECK_FIRST_LINK_ARG; + } #endif /* #ifdef __WIN32__ */ else if (is_prefix("-l", &arg)) { CHECK_FIRST_LINK_ARG; |