I've been writing a static library with C++ (GCC) which I wanted to import in PB.
Works fine in general, but as soon as I use "new" (or more specific, as soon as I want to create an object inside the library),
PB's linker tells me this:
Code: Select all
POLINK: error: Unresolved external symbol '__ZdlPv'.
POLINK: error: Unresolved external symbol '__Znwj'.
I already tried using VC++ since PB links those libraries,
but I couldn't get it to work at all with VC++. The PB compiler got stuck
while linking, with the polink.exe process allocating more and more memory
up to inifinity... -_-
I'd appreaciate any help
