Erro ao compilar o código fonte, possivelmente relacionado ao cpp

2

Eu estou tentando compilar algum código-fonte, no entanto, quando eu digito o comando "make" no terminal, ele produz um erro. Do meu entendimento limitado, o problema parece surgir quando o código tenta produzir arquivos .f90 a partir dos arquivos .F. A partir da leitura na web, parece que o problema pode estar relacionado com o pré-processador. Parece que um cabeçalho c está sendo adicionado aos arquivos .f90 com os quais o gfortran está tendo um problema. A saída após o comando "make" é a seguinte:

make: Circular mod_prec.o <- mod_prec.o dependency dropped.
make: Circular mod_prec.o <- mod_prec.o dependency dropped.

make: Circular mod_prec.o <- mod_prec.o dependency dropped.
/usr/bin/cpp-4.8 -P -C -traditional  -DGFORTRAN -P -C -traditional    -DWET_DRY -DMULTIPROCESSOR    -DLIMITED_NO  -DGCN                                        mod_prec.F > mod_prec.f90
/usr/bin/gfortran-4.8  -c   -I/home/dan/FVCOM3.2.2/FVCOM_source/libs/install/include        mod_prec.f90
Warning: Nonexistent include directory "/home/dan/FVCOM3.2.2/FVCOM_source/libs/install/include"
mod_prec.f90:1.1:

/* Copyright (C) 1991-2012 Free Software Foundation, Inc.
 1
Error: Invalid character in name at (1)
mod_prec.f90:2.3:

   This file is part of the GNU C Library.
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:4.3:

   The GNU C Library is free software; you can redistribute it and/or
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:4.39:

   The GNU C Library is free software; you can redistribute it and/or
                                       1
Error: Unclassifiable statement at (1)
mod_prec.f90:5.3:

   modify it under the terms of the GNU Lesser General Public
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:6.3:

   License as published by the Free Software Foundation; either
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:6.57:

   License as published by the Free Software Foundation; either
                                                         1
Error: Unclassifiable statement at (1)
mod_prec.f90:7.3:

   version 2.1 of the License, or (at your option) any later version.
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:9.3:

   The GNU C Library is distributed in the hope that it will be useful,
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:10.3:

   but WITHOUT ANY WARRANTY; without even the implied warranty of
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:10.29:

   but WITHOUT ANY WARRANTY; without even the implied warranty of
                             1
Error: Unclassifiable statement at (1)
mod_prec.f90:11.3:

   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:12.3:

   Lesser General Public License for more details.
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:14.3:

   You should have received a copy of the GNU Lesser General Public
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:15.3:

   License along with the GNU C Library; if not, see
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:15.41:

   License along with the GNU C Library; if not, see
                                         1
Error: Unclassifiable statement at (1)
mod_prec.f90:16.4:

   <http://www.gnu.org/licenses/>.  */
    1
Error: Invalid character in name at (1)
mod_prec.f90:19.1:

/* This header is separate from features.h so that the compiler can
 1
Error: Invalid character in name at (1)
mod_prec.f90:20.3:

   include it implicitly at the start of every compilation.  It must
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:21.3:

   not itself include <features.h> or any other header that includes
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:22.4:

   <features.h> because the implicit include comes before any feature
    1
Error: Invalid character in name at (1)
mod_prec.f90:23.3:

   test macros that may be defined in a source file before it first
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:24.3:

   explicitly includes a system header.  GCC knows the name of this
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:25.3:

   header in order to preinclude it.  */
   1
Error: Unclassifiable statement at (1)
mod_prec.f90:27.1:

/* Define __STDC_IEC_559__ and other similar macros.  */
 1
Error: Invalid character in name at (1)
Fatal Error: Error count reached limit of 25.
make: *** [mod_prec.o] Error 1

Eu sou novo no Linux e não tenho nenhum conhecimento real de C ou FORTRAN, então peço desculpas se a pergunta for tola.

O arquivo de saída (neste caso, mod_prec.f90) contém o seguinte cabeçalho, que é a causa do erro devido ao comentário estar no formato C:

/* Copyright (C) 1991-2012 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <http://www.gnu.org/licenses/>.  */


/* This header is separate from features.h so that the compiler can
   include it implicitly at the start of every compilation.  It must
   not itself include <features.h> or any other header that includes
   <features.h> because the implicit include comes before any feature
   test macros that may be defined in a source file before it first
   explicitly includes a system header.  GCC knows the name of this
   header in order to preinclude it.  */

/* Define __STDC_IEC_559__ and other similar macros.  */
/* Copyright (C) 2005 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA.  */



/* We do support the IEC 559 math functionality, real and complex.  */


/* wchar_t uses ISO/IEC 10646 (2nd ed., published 2011-03-15) /
   Unicode 6.0.  */

/* We do not support C11 <threads.h>.  */
    
por dan 22.04.2015 / 15:43

2 respostas

1

Este é o erro do GCC # 65387 . E como você pode ver, é fechado como não é um bug. O pré-processador C / C ++ está emitindo código C / C ++ em seu programa Fortran pós-processado, porque é um pré-processador C / C ++ .

Se você for usar o pré-processador C / C ++ com programas Fortran de acordo com o próprio Fortran docco do GCC , então faça a parte que o GCC Fortran doco não informa e use -fstandalone .

Leitura adicional

por 22.04.2015 / 20:43
0

O problema está nos arquivos de origem .F. Você está tentando usar comentários no estilo C / C ++, e o compilador Fortran não os está vendo como comentários. Parece-lhes uma má sintaxe.

    
por 22.04.2015 / 16:15

Tags