Re: How to create tests for FC?

2005-06-10 Thread Ralf Wildenhues
Hi Steven, * Steven G. Johnson wrote on Tue, Jun 07, 2005 at 11:01:49PM CEST: I don't think you have any choice here. For the Intel compiler, the -Tf flag has to come immediately before the source file. So, you have to modify your behavior, at least for Fortran. I would suggest that

Re: How to create tests for FC?

2005-06-08 Thread Ralf Wildenhues
Hi Stepan, * Stepan Kasal wrote on Tue, Jun 07, 2005 at 03:36:19PM CEST: On Tue, Jun 07, 2005 at 08:59:27AM +0200, Ralf Wildenhues wrote: But seriously, I believe they read this list as well. don't be so sure. If you have a problem with automake, ask on automake list. If it is a bug,

Re: How to create tests for FC?

2005-06-07 Thread Ralf Wildenhues
Hi Steven, others, * Steven G. Johnson wrote on Mon, Jun 06, 2005 at 10:27:05PM CEST: Ralf Wildenhues wrote: 1) Within libtool.m4, a few tests need to be run to find out compiler/ linker characteristics. These may give false failures if the user has set AC_FC_SRCEXT(...) of AC_FC_FREEFORM

Re: How to create tests for FC?

2005-06-07 Thread Stepan Kasal
Hi, On Tue, Jun 07, 2005 at 08:59:27AM +0200, Ralf Wildenhues wrote: It might be helpful if they got a patch. :) But seriously, I believe they read this list as well. don't be so sure. If you have a problem with automake, ask on automake list. If it is a bug, report it to bug-automake. If

Re: How to create tests for FC?

2005-06-07 Thread Steven G. Johnson
Your tests should also normally use AC_COMPILE_IFELSE which uses the current extension and flags (if any). Not so good. Currently, libtool.m4 uses $ac_compile but modifies it so that the compiler flag we are currently testing comes right after the last *FLAGS variable, if any, or before the

How to create tests for FC?

2005-06-06 Thread Ralf Wildenhues
I am trying to put FC support in Libtool, and encounter a problem similar and not quite orthogonal to Steven's suggestion for Automake[1]. Actually, more than one: 1) Within libtool.m4, a few tests need to be run to find out compiler/ linker characteristics. These may give false failures if the

Re: How to create tests for FC?

2005-06-06 Thread Steven G. Johnson
Ralf Wildenhues wrote: 1) Within libtool.m4, a few tests need to be run to find out compiler/ linker characteristics. These may give false failures if the user has set AC_FC_SRCEXT(...) of AC_FC_FREEFORM differently than expected. First: can I find out (without perusing Autoconf internal