Rev 315 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 315 | Rev 2010 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | #! /bin/sh |
1 | #! /bin/sh |
2 | # Wrapper for compilers which do not understand '-c -o'. |
2 | # Wrapper for compilers which do not understand '-c -o'. |
3 | 3 | ||
4 | scriptversion=2012-10-14.11; # UTC |
4 | scriptversion=2018-03-07.03; # UTC |
5 | 5 | ||
6 | # Copyright (C) 1999-2014 Free Software Foundation, Inc. |
6 | # Copyright (C) 1999-2018 Free Software Foundation, Inc. |
7 | # Written by Tom Tromey <tromey@cygnus.com>. |
7 | # Written by Tom Tromey <tromey@cygnus.com>. |
8 | # |
8 | # |
9 | # This program is free software; you can redistribute it and/or modify |
9 | # This program is free software; you can redistribute it and/or modify |
10 | # it under the terms of the GNU General Public License as published by |
10 | # it under the terms of the GNU General Public License as published by |
11 | # the Free Software Foundation; either version 2, or (at your option) |
11 | # the Free Software Foundation; either version 2, or (at your option) |
Line 15... | Line 15... | ||
15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 | # GNU General Public License for more details. |
17 | # GNU General Public License for more details. |
18 | # |
18 | # |
19 | # You should have received a copy of the GNU General Public License |
19 | # You should have received a copy of the GNU General Public License |
20 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 | # along with this program. If not, see <https://www.gnu.org/licenses/>. |
21 | 21 | ||
22 | # As a special exception to the GNU General Public License, if you |
22 | # As a special exception to the GNU General Public License, if you |
23 | # distribute this file as part of a program that contains a |
23 | # distribute this file as part of a program that contains a |
24 | # configuration script generated by Autoconf, you may include it under |
24 | # configuration script generated by Autoconf, you may include it under |
25 | # the same distribution terms that you use for the rest of that program. |
25 | # the same distribution terms that you use for the rest of that program. |
Line 253... | Line 253... | ||
253 | ;; |
253 | ;; |
254 | -v | --v*) |
254 | -v | --v*) |
255 | echo "compile $scriptversion" |
255 | echo "compile $scriptversion" |
256 | exit $? |
256 | exit $? |
257 | ;; |
257 | ;; |
258 | cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) |
258 | cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ |
- | 259 | icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) |
|
259 | func_cl_wrapper "$@" # Doesn't return... |
260 | func_cl_wrapper "$@" # Doesn't return... |
260 | ;; |
261 | ;; |
261 | esac |
262 | esac |
262 | 263 | ||
263 | ofile= |
264 | ofile= |
Line 337... | Line 338... | ||
337 | exit $ret |
338 | exit $ret |
338 | 339 | ||
339 | # Local Variables: |
340 | # Local Variables: |
340 | # mode: shell-script |
341 | # mode: shell-script |
341 | # sh-indentation: 2 |
342 | # sh-indentation: 2 |
342 | # eval: (add-hook 'write-file-hooks 'time-stamp) |
343 | # eval: (add-hook 'before-save-hook 'time-stamp) |
343 | # time-stamp-start: "scriptversion=" |
344 | # time-stamp-start: "scriptversion=" |
344 | # time-stamp-format: "%:y-%02m-%02d.%02H" |
345 | # time-stamp-format: "%:y-%02m-%02d.%02H" |
345 | # time-stamp-time-zone: "UTC" |
346 | # time-stamp-time-zone: "UTC0" |
346 | # time-stamp-end: "; # UTC" |
347 | # time-stamp-end: "; # UTC" |
347 | # End: |
348 | # End: |