I’m on Ubuntu version 16.04, and I’ve been running into an issue repeatedly whilst trying to compile the game. I’ve attempted compiling with Clang, g++ 5.4.0, and g++ 9.2.1.
I’ve previously successfully compiled the game multiple times using clang, this error began stopping me from compiling this Monday.
During every one of these compiles, I run into a similar error.
g++:
obj/npctalk.o: In function 'dynamic_line_t': /githolder/cdda/src/npctalk.cpp:2893: undefined reference to 'conditional_t<dialogue>::conditional_t()' collect2: error: ld returned 1 exit status Makefile:828: recipe for target 'cataclysm' failed make: *** [cataclysm] Error 1
clang:
obj/npctalk.o: In function 'dynamic_line_t': /githolder/cdda/src/npctalk.cpp:2893: undefined reference to 'onditional_t<dialogue>::conditional_t()' clang: error: linker command failed with exit code 1 (use -v to see invocation) Makefile:828: recipe for target 'cataclysm' failed make: *** [cataclysm] Error 1
Any help or input would be appreciated.