3

我正在尝试编译一些 C 代码(写于 1993 年)并消除了一些小皱纹,但被困在一个(15/16 对象编译与 2 个小调整)。这是向我发送错误的代码:

#include "diagmesg.h"
#include <string.h>
#include <stdlib.h>

/* Definition of global variables */
FILE *  error_fp = stderr;

这是diagmesg.h:

#ifndef DIAGMESG_H
#define DIAGMESG_H
#include <stdio.h>

/* extern int fprintf(); CHANGE 9/3 */

/* Global types */
/* Possible settings for the Diagnostic Reporting Level */
enum Diagnostic_Level   { NONE, ERROR, INFORM, DEBUG };

/* Declaration of global variables */
extern enum Diagnostic_Level    current_level;
extern FILE         *error_fp;

/* macros for doing Diagnostic Report */
#define ERROR_MSG( s )\
do{ if ( current_level >= ERROR  ) fprintf( error_fp, "(e)   %s\n", s); }while(0)
#define INFORM_MSG( s )\
do{ if ( current_level >= INFORM ) fprintf( error_fp, "(i)   %s\n", s); }while(0)
#define DEBUG_MSG( s )\
do{ if ( current_level >= DEBUG  ) fprintf( error_fp, "(d)   %s\n", s); }while(0)

/* buffer control */
#define BUFFER_BLOCK 32

extern void Buffer_MSG( enum Diagnostic_Level, char *);
extern void Flush_MSG( void );
#endif

这是来自编译器的(相关)消息:

GNU C (GCC) version 4.5.3 (i686-pc-cygwin)
        compiled by GNU C version 4.5.3, GMP version 4.3.2, MPFR version 3.0.1-p4, MPC version 0.8
warning: MPFR header version 3.0.1-p4 differs from library version 3.1.2.
GGC heuristics: --param ggc-min-expand=99 --param ggc-min-heapsize=129520
ignoring nonexistent directory "/usr/local/include"
ignoring nonexistent directory "/usr/lib/gcc/i686-pc-cygwin/4.5.3/../../../../i686-pc-cygwin/include"
ignoring duplicate directory "/usr/lib/gcc/i686-pc-cygwin/4.5.3/../../../../i686-pc-cygwin/lib/../../include/w32api"
#include "..." search starts here:
#include <...> search starts here:
 /usr/lib/gcc/i686-pc-cygwin/4.5.3/include
 /usr/lib/gcc/i686-pc-cygwin/4.5.3/include-fixed
 /usr/include
 /usr/lib/gcc/i686-pc-cygwin/4.5.3/../../../../include/w32api
End of search list.
GNU C (GCC) version 4.5.3 (i686-pc-cygwin)
        compiled by GNU C version 4.5.3, GMP version 4.3.2, MPFR version 3.0.1-p4, MPC version 0.8
warning: MPFR header version 3.0.1-p4 differs from library version 3.1.2.
GGC heuristics: --param ggc-min-expand=99 --param ggc-min-heapsize=129520
Compiler executable checksum: 89d6774c1d510265da7d48b735ce61fb
diagmesg.c:17:1: error: initializer element is not constant
Makefile:101: recipe for target `diagmesg.o' failed
make: *** [diagmesg.o] Error 1

源代码中的第 17 行是 FILE * error_fp = stderr;上面显示的语句

我不是一个常规的 C 程序员。如果有人能澄清“初始化元素不是常量”的含义和/或可能的编译解决方案将非常感激。

4

3 回答 3

2

具体如何stderr定义取决于您的系统,但在大多数情况下,它将是一种变量,不能像error_fp在代码中那样用于在全局变量的声明中进行初始化。你可以做的是在你error_fp第一次使用之前在你的代码中找到一个位置(通过..._MSG()直接使用它来调用宏矿石)并在那里初始化它(例如在你的main()函数中)。

编辑:只是为了好奇:我刚刚做了一个简短的测试,可以在两个不同的 solaris 系统和 AIX 上编译和运行像你这样的代码,但不能在 Linux 上

于 2013-07-09T10:20:11.717 回答
1

系统库给出了一个不恒定的 stderr 定义。当您分配给需要常量初始化程序stderr的全局变量时,这是一个问题。error_fp

作为一种解决方案,您可以直接在 printf 中使用 stderr,例如:

fprintf( stderr, "(e)   %s\n", s);
于 2013-07-09T10:36:35.843 回答
1

这是系统库的问题。系统库提供的文件提供了一个不是常量的 stderr 定义。

早些时候(我的意思是在旧库中)stderr 是按原样给出的#define stderr _IO_stderr,现在它是extern FILE *stderr. 已经存在一些解决方法,例如使用自定义 stdio.h。有关更多信息,请参阅此

于 2013-07-09T10:38:36.137 回答