diff options
author | oliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-28 15:52:01 +0000 |
---|---|---|
committer | oliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-09-28 15:52:01 +0000 |
commit | f07251bcb08384d95719e1ec1ab69d900226f0af (patch) | |
tree | 2bad8419651e95a4a3dc2aec3bd669571187570a /gcc/acconfig.h | |
parent | c7d58dfadcc3daae631e18958f1314700d4903b6 (diff) | |
download | gcc-f07251bcb08384d95719e1ec1ab69d900226f0af.tar.gz |
* configure.in: new flags --with-ld and --with-as, equivalent
to setting LD and AS environment variables. Test whether
specified arguments are GNU commands, and report them with
checking messages. Use the specified AS for configure
tests too.
* configure: ditto
* acconfig.h: add DEFAULT_ASSEMBLER and DEFAULT_LINKER
* config.in: ditto
* gcc.c (find_a_file): when looking for `as' and `ld', return
the DEFAULT program if it exists
* collect2.c (main): use DEFAULT_LINKER if it exists
* gcc.c (find_a_file): the test for existence of a full
pathname was reversed
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22629 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/acconfig.h')
-rw-r--r-- | gcc/acconfig.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/acconfig.h b/gcc/acconfig.h index 71dcb1c45c7..04875706983 100644 --- a/gcc/acconfig.h +++ b/gcc/acconfig.h @@ -86,4 +86,11 @@ /* Define if you want expensive run-time checks. */ #undef ENABLE_CHECKING + +/* Define to enable the use of a default assembler. */ +#undef DEFAULT_ASSEMBLER + +/* Define to enable the use of a default linker. */ +#undef DEFAULT_LINKER + @TOP@ |