-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't make #73
Comments
Unfortunately, since I was replacing my old hard drive with a new one, I On Sun, Apr 6, 2014 at 2:10 PM, Henorvell Ge [email protected]:
|
I got it to work. First bug: line 282 of item.cpp. Add the letter y to the end of the world health. Here's the relevant compilation message, not sure how to put it in a code tag on github: To fix the second bug, I commented out line 314 of iuse.cpp. g++ -O3 -c iuse.cpp -o obj/iuse.o Third bug is a set of bugs with map.cpp. g++ -O3 -c map.cpp -o obj/map.o |
So how did you fix the 3rd set of bugs? - looking at the code i guess you could just comment that whole function? |
im working on it and it's not the whole last block from 1935 as id hoped. literally the functions where the errors happen. is what the previousposters meant I believe. |
My take on the compilation errors. I'll leave it here for anyone trying to compile Cataclysm. Error 1: Error 2: Error 3: Error 4: Segfault: Then I get a segfault on game start that is related to the unarmed styles macro. The problem is this line: |
g++ -O3 -c item.cpp -o obj/item.o
item.cpp: In member function ‘std::string item::info(bool)’:
item.cpp:282:43: error: ‘struct it_comest’ has no member named ‘health’
"\n Healthiness: " << int(food->health);
^
make: *** [obj/item.o] Error 1
this is what i get.How to solve it?
The text was updated successfully, but these errors were encountered: