mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-28 16:53:45 +02:00
See also: https://bugs.gentoo.org/706366 gcc-10 and above flipped a default from -fcommon to -fno-common: https://gcc.gnu.org/PR85678 Usually all it takes is to add a few 'extern' declarations and move definitions from header files to modules. I've port iverilog to gcc-10 accroding to this guide: https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common To fix this, I analyzed the code, and found ``pli_trace`` has been defined at here: https://github.com/steveicarus/iverilog/blob/v10_3/libveriuser/priv.c#L24 So I changed ``FILE* pli_trace;`` to ``extern FILE* pli_trace;``. The var ``current_file`` only in ``cfparse_misc.h``, I changed it from ``char *current_file;`` to ``extern char *current_file;`` and declaring it in cflexor.lex And then it works. Signed-off-by: Huang Rui <[email protected]>
45 lines
1.5 KiB
C
45 lines
1.5 KiB
C
#ifndef IVL_cfparse_misc_H
|
|
#define IVL_cfparse_misc_H
|
|
/*
|
|
* Copyright (c) 2001-2014 Picture Elements, Inc.
|
|
* Stephen Williams ([email protected])
|
|
*
|
|
* This source code is free software; you can redistribute it
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
* General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
/*
|
|
* The vlltype supports the passing of detailed source file location
|
|
* information between the lexical analyzer and the parser. Defining
|
|
* YYLTYPE compels the lexor to use this type and not something other.
|
|
*/
|
|
struct cfltype {
|
|
unsigned first_line;
|
|
unsigned first_column;
|
|
unsigned last_line;
|
|
unsigned last_column;
|
|
const char*text;
|
|
};
|
|
# define YYLTYPE struct cfltype
|
|
|
|
int cflex(void);
|
|
int cferror(const char *);
|
|
int cfparse(void);
|
|
void switch_to_command_file(const char *);
|
|
void destroy_lexor(void);
|
|
extern char *current_file;
|
|
|
|
#endif /* IVL_cfparse_misc_H */
|