无法使用MinGW编译以前修改过的Nethack - 缓存问题?

时间:2015-01-18 01:49:43

标签: c windows-8 compiler-errors mingw nethack

所以最近,我正在搞乱Nethack的来源,这是一款相当古老的游戏。我使用本指南来帮助我开始使用:Compiling - Wikihack

为了测试,我首先编译了原始源代码。稍后进行了一些调整,我能够毫无问题地运行它。接下来,我根据现有的怪物编辑了一点源并添加了两个样本怪物。游戏编译没有任何问题,我的测试怪物出现在游戏中。

之后,我尝试稍微调整一下怪物并重新编译。但出于某种原因,我的调整都没有显示出来。我决定删除所有内容并从头开始,再次重建原始源代码,尚未进行任何修改。现在突然间,我遇到了错误,引用了丢失的测试怪物。

这怎么可能?我仔细检查了这个测试怪物不在源代码中(为什么它应该是?它是原始来源)。我唯一的解释是编译器出于某种原因缓存了以前的数据。清空monst.c完全没有区别,但删除它会使编译器抱怨丢失文件。

以下是有问题的错误:

C:\Nethack-src\nethack-3.4.3\src>mingw32-make -f makefile.gcc install
----
NOTE: This build will include tile support.
----
creating directory o
gcc -c -mms-bitfields -I../include -I../win/win32 -g -DTILES -DMSWIN_GRAPHICS -D
_WIN32_IE=0x0400 -oo/makedefs.o ../util/makedefs.c
gcc -c -mms-bitfields -I../include -I../win/win32 -g -DTILES -DMSWIN_GRAPHICS -D
_WIN32_IE=0x0400 -DDLB  -oo/monst.o /monst.c
/monst.c:1:9: error: expected declaration specifiers or '...' before string cons
tant
     MON("test lizard", S_LIZARD,
         ^
/monst.c:1:24: error: unknown type name 'S_LIZARD'
     MON("test lizard", S_LIZARD,
                        ^
/monst.c:2:2: error: unknown type name 'LVL'
  LVL(12, 16, 0, 50, 7), (G_GENO|1),
  ^
/monst.c:2:25: error: expected declaration specifiers or '...' before '(' token
  LVL(12, 16, 0, 50, 7), (G_GENO|1),
                         ^
/monst.c:3:2: error: unknown type name 'A'
  A(ATTK(AT_CLAW, AD_PHYS, 1, 10), NO_ATTK,
  ^
/monst.c:5:2: error: unknown type name 'SIZ'
  SIZ(2600, 400, 0, MS_MUMBLE, MZ_HUGE), MR_POISON, MR_POISON,
  ^
/monst.c:5:41: error: unknown type name 'MR_POISON'
  SIZ(2600, 400, 0, MS_MUMBLE, MZ_HUGE), MR_POISON, MR_POISON,
                                         ^
/monst.c:5:52: error: unknown type name 'MR_POISON'
  SIZ(2600, 400, 0, MS_MUMBLE, MZ_HUGE), MR_POISON, MR_POISON,
                                                    ^
/monst.c:6:2: error: unknown type name 'M1_NOLIMBS'
  M1_NOLIMBS|M1_SLITHY|M1_THICK_HIDE|M1_OVIPAROUS|M1_POIS|M1_NOTAKE|
  ^
/monst.c:8:2: error: unknown type name 'M2_STRONG'
  M2_STRONG, 0, CLR_GREEN),
  ^
/monst.c:8:13: error: expected declaration specifiers or '...' before numeric co
nstant
  M2_STRONG, 0, CLR_GREEN),
             ^
/monst.c:8:16: error: unknown type name 'CLR_GREEN'
  M2_STRONG, 0, CLR_GREEN),
                ^
makefile.gcc:252: recipe for target 'o/monst.o' failed
mingw32-make: *** [o/monst.o] Error 1

C:\Nethack-src\nethack-3.4.3\src>pause
Press any key to continue . . .

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

看看build命令:

gcc -c -mms-bitfields -I../include -I../win/win32 -g
    -DTILES -DMSWIN_GRAPHICS -D _WIN32_IE=0x0400 -DDLB  -oo/monst.o /monst.c

它在一个完全不同的目录中查看monst.c,即/

您可能在原始更改后在makefile中引入了此错误;这是代码更改也停止生效的时间。