Changes between Initial Version and Version 1 of Ticket #22646, comment 110
- Timestamp:
- 07/31/17 15:01:55 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22646, comment 110
initial v1 9 9 > If you are going to use something non-standard like `--c-compiler=`I am almost tempted to tell you not to use it to set `CC` either. But then you lose some of the work `AC_PROG_CC` does for you [test that the compiler work, if it is gcc (real or fake)]. 10 10 11 I don't see what you mean here. E.g. in `configure.ac` one can do something like11 I don't see what you mean here. E.g. in `configure.ac` one can probably do something like 12 12 {{{ 13 13 CCORIG=gcc 14 14 AC_SUBST(CC,$CCORIG) 15 15 AC_ARG_WITH(cc,AS_HELP_STRING(--with-cc=...,specify the full path to the C compiler ($CC)),CC=$withval) 16 AC_PROG_CC() 16 17 ... 17 18 AC_ARG_WITH(cxx,...