c++ - error when compiling from a Terminal with a makefile -
i trying recompile command line program in mac os x 10.10. last time did few years ago worked fine. following error:
haplist::output(std::ostream&, std::vector<int, std::allocator<int> > const*, double, bool) in haplist2.o ld: symbol(s) not found architecture x86_64 clang: error: linker command failed exit code 1 (use -v see invocation) make: *** [phase] error 1
i novice @ , know little beyond typing "make" @ command line prompt. clear x86_64 architecture, compiled fine before under os x lion. have clues how fix ?
matt
the error states function haplist::output has been declared, definition (function body) has not been found during build.
locate function's definition resides , use work out why it's not being included in build.
Comments
Post a Comment