Last active
March 19, 2025 05:16
-
-
Save dchmelik/e21f70b240099e0a5f8c9b7f16323e28 to your computer and use it in GitHub Desktop.
tomenet make error log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clang -pipe -Wall -DUSE_GCU -D_XOPEN_SOURCE -D_BSD_SOURCE -DMEXP=19937 -std=c99 -D_DEFAULT_SOURCE -DACC32 -fPIE -fsigned-char -fstack-protector -D_FORTIFY_SOURCE=2 -fPIE -Iserver -Iserver/lua -g -O2 -o server/slash.o -c server/slash.c | |
server/slash.c:3137:5: error: 'break' statement not in loop or switch statement | |
break; | |
^ | |
server/slash.c:3138:4: error: 'case' statement not in switch statement | |
case TV_SCROLL: | |
^ | |
server/slash.c:3143:5: error: 'break' statement not in loop or switch statement | |
break; | |
^ | |
server/slash.c:3144:4: error: 'case' statement not in switch statement | |
case TV_AMULET: | |
^ | |
server/slash.c:3153:5: error: 'break' statement not in loop or switch statement | |
break; | |
^ | |
server/slash.c:3154:4: error: 'case' statement not in switch statement | |
case TV_RING: | |
^ | |
server/slash.c:3161:5: error: 'break' statement not in loop or switch statement | |
break; | |
^ | |
server/slash.c:3165:8: error: use of undeclared identifier 'pval' | |
if (pval > 15) pval = 15; | |
^ | |
server/slash.c:3165:19: error: use of undeclared identifier 'pval' | |
if (pval > 15) pval = 15; | |
^ | |
server/slash.c:3166:8: error: use of undeclared identifier 'bpval' | |
if (bpval > 15) bpval = 15; | |
^ | |
server/slash.c:3166:20: error: use of undeclared identifier 'bpval' | |
if (bpval > 15) bpval = 15; | |
^ | |
server/slash.c:3169:9: error: use of undeclared identifier 'o_ptr'; did you mean 'p_ptr'? | |
if ((o_ptr->name2 == EGO_HA || o_ptr->name2b == EGO_HA || | |
^~~~~ | |
p_ptr | |
server/slash.c:327:15: note: 'p_ptr' declared here | |
player_type *p_ptr = Players[Ind]; | |
^ | |
server/slash.c:3169:35: error: use of undeclared identifier 'o_ptr'; did you mean 'p_ptr'? | |
if ((o_ptr->name2 == EGO_HA || o_ptr->name2b == EGO_HA || | |
^~~~~ | |
p_ptr | |
server/slash.c:327:15: note: 'p_ptr' declared here | |
player_type *p_ptr = Players[Ind]; | |
^ | |
server/slash.c:3170:8: error: use of undeclared identifier 'o_ptr'; did you mean 'p_ptr'? | |
o_ptr->name2 == EGO_ATTACKS || o_ptr->name2b == EGO_ATTACKS || | |
^~~~~ | |
p_ptr | |
server/slash.c:327:15: note: 'p_ptr' declared here | |
player_type *p_ptr = Players[Ind]; | |
^ | |
server/slash.c:3170:39: error: use of undeclared identifier 'o_ptr'; did you mean 'p_ptr'? | |
o_ptr->name2 == EGO_ATTACKS || o_ptr->name2b == EGO_ATTACKS || | |
^~~~~ | |
p_ptr | |
server/slash.c:327:15: note: 'p_ptr' declared here | |
player_type *p_ptr = Players[Ind]; | |
^ | |
server/slash.c:3171:8: error: use of undeclared identifier 'o_ptr'; did you mean 'p_ptr'? | |
o_ptr->name2 == EGO_COMBAT || o_ptr->name2b == EGO_COMBAT || | |
^~~~~ | |
p_ptr | |
server/slash.c:327:15: note: 'p_ptr' declared here | |
player_type *p_ptr = Players[Ind]; | |
^ | |
server/slash.c:3171:38: error: use of undeclared identifier 'o_ptr'; did you mean 'p_ptr'? | |
o_ptr->name2 == EGO_COMBAT || o_ptr->name2b == EGO_COMBAT || | |
^~~~~ | |
p_ptr | |
server/slash.c:327:15: note: 'p_ptr' declared here | |
player_type *p_ptr = Players[Ind]; | |
^ | |
server/slash.c:3172:8: error: use of undeclared identifier 'o_ptr'; did you mean 'p_ptr'? | |
o_ptr->name2 == EGO_FURY || o_ptr->name2b == EGO_FURY || | |
^~~~~ | |
p_ptr | |
server/slash.c:327:15: note: 'p_ptr' declared here | |
player_type *p_ptr = Players[Ind]; | |
^ | |
server/slash.c:3172:36: error: use of undeclared identifier 'o_ptr'; did you mean 'p_ptr'? | |
o_ptr->name2 == EGO_FURY || o_ptr->name2b == EGO_FURY || | |
^~~~~ | |
p_ptr | |
server/slash.c:327:15: note: 'p_ptr' declared here | |
player_type *p_ptr = Players[Ind]; | |
^ | |
fatal error: too many errors emitted, stopping now [-ferror-limit=] | |
20 errors generated. | |
make: *** [makefile:519: server/slash.o] Error 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment