Deutsch English Français Italiano |
<vhh19n$1ls8v$1@dont-email.me> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!weretis.net!feeder9.news.weretis.net!news.quux.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Lynn McGuire <lynnmcguire5@gmail.com> Newsgroups: comp.lang.fortran Subject: Re: can gfortran notify me when it can not find a module interface for a subroutine call ? Date: Mon, 18 Nov 2024 21:39:35 -0600 Organization: A noiseless patient Spider Lines: 30 Message-ID: <vhh19n$1ls8v$1@dont-email.me> References: <vhg9ik$1e44e$1@dont-email.me> <vhgagr$1e44e$4@dont-email.me> <vhgdqh$1es3r$1@dont-email.me> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Date: Tue, 19 Nov 2024 04:39:35 +0100 (CET) Injection-Info: dont-email.me; posting-host="798a99fdad40cbbe9c1b7ddf3d54ed8a"; logging-data="1765663"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+jW4q51fqdh8BI067GVBPiQTEJTdP7mJU=" User-Agent: Mozilla Thunderbird Cancel-Lock: sha1:nBdm6+9/6dzubyOGEx3TpgfAHpU= In-Reply-To: <vhgdqh$1es3r$1@dont-email.me> Content-Language: en-US Bytes: 2220 On 11/18/2024 4:07 PM, Steven G. Kargl wrote: > On Mon, 18 Nov 2024 15:10:51 -0600, Lynn McGuire wrote: > >> On 11/18/2024 2:54 PM, Lynn McGuire wrote: >>> Can gfortran notify me when it can not find a module interface for a >>> subroutine or function call ? >>> >>> I have 6,000+ subroutines and only 2,603 module interfaces in my module >>> file. I would like to automate this as much as possible. >>> >> >> I just found "-Wimplicit-procedure" and am trying it out. >> > > If you're in porting mode with gfortran, I suggest adding > the options -Wall -Wextra -Wsurprising to your compiler > flags. These might lead to a long list of things to > consider. If the code is old and rather dirty with > extensions, you'll likely need the -std=legacy option. I have to have "-mrtd -fno-underscoring -Ic:\\dii\\inc -fdec -fdefault-double-8 -fno-automatic -fdefault-integer-8 -Wimplicit-procedure" turned on at the moment. I tried without -fdec and ran into thousands of lines of problems. Not this port. Thanks, Lynn