Created
November 16, 2015 15:27
-
-
Save jonm/e0991f3c013b4efcfafb to your computer and use it in GitHub Desktop.
first attempt at `make` with autotools-generated `Makefile`
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
[~/src/SillyMUD]$ make | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make all-recursive | |
Making all in src | |
gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -MT comm.o -MD -MP -MF .deps/comm.Tpo -c -o comm.o comm.c | |
mv -f .deps/comm.Tpo .deps/comm.Po | |
gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -MT act.comm.o -MD -MP -MF .deps/act.comm.Tpo -c -o act.comm.o act.comm.c | |
mv -f .deps/act.comm.Tpo .deps/act.comm.Po | |
gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -MT act.info.o -MD -MP -MF .deps/act.info.Tpo -c -o act.info.o act.info.c | |
act.info.c:3340:23: error: no member named 'gname' in 'struct char_special_data' | |
if (person->specials.gname && CAN_SEE(ch, person)) { | |
~~~~~~~~~~~~~~~~ ^ | |
act.info.c:3342:22: error: no member named 'gname' in 'struct char_special_data' | |
person->specials.gname); | |
~~~~~~~~~~~~~~~~ ^ | |
/usr/include/secure/_stdio.h:47:56: note: expanded from macro 'sprintf' | |
__builtin___sprintf_chk (str, 0, __darwin_obsz(str), __VA_ARGS__) | |
^ | |
act.info.c:3360:28: error: no member named 'gname' in 'struct char_special_data' | |
free(person->specials.gname); | |
~~~~~~~~~~~~~~~~ ^ | |
act.info.c:3361:23: error: no member named 'gname' in 'struct char_special_data' | |
person->specials.gname = 0; | |
~~~~~~~~~~~~~~~~ ^ | |
4 errors generated. | |
make[2]: *** [act.info.o] Error 1 | |
make[1]: *** [all-recursive] Error 1 | |
make: *** [all] Error 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment