So I'm trying to do an assignment, we have to make a driver and use some functions from the teachers library they have made.
he provides us with a header file and an obj file.
but when ever i try compile I get undefined reference error which is a linker issue, leading me to believe its not linking the provided obj file, anyone have experience with this?
Ok, you got a real output. My g++ -o main3.exe utilities.obj display_ascii2.cpp outright segfaulted on several attempts. And I think the reason is that the .obj file is in COFF(?) format and is supposed to be used with MS Visual C++. I don't know if it can be somehow linked with gcc, but I don't think so.
Also, the demo app included complains it needs MSVC12 to funcion, so I would just use that to compile it.