How to fix “LME288/Unknown heap name” warning?

On 15 Jan, 2020, Embarcadero changed the status of RSP-12869 from “Needs feedback” to “Open” and assigned it to Internal Dev. Older History: With the 10.2 Tokyo release of C++ Builder in April 2017, Embarcadero upgraded the linker, claiming to solve the problem: “The linker is now large address aware and can address up to … Read more

inline function linker error

You need to put function definition into the header then. The simplest way to hint the compiler to inline is to include method body in the class declaration like: class NeedleUSsim { // … int GetTplLSize() const { return sampleDim[1]; } // … }; or, if you insist on separate declaration and definition: class NeedleUSsim … Read more

Exporting static data in a DLL

In this thread at cprogramming.com it is suggested that a static variable is local to the dll and not exported. Summary of discussion below The static member is not accessed directly by code in the calling application, only through member functions of the class in the dll. However there are several inline functions accessing the … Read more

Application too big? Unable to execute dex: Cannot merge new index into a non-jumbo instruction

Your error is for the amount of strings (methods, members, etc) in a single dex file. You need to compile you app using jumbo in dex with: dex.force.jumbo=true in project.properties This increment the limit for strings in a dex files. And your project will probably compile. Also with jumbo set, the is another limit of … Read more

“File not found”, “linker command failed with exit code 1” in Xcode 4.5.1

Steps to resolve: Create new scheme with different name Delete old scheme Add new scheme Where the problem came from: I changed my product name and disabled the snapshot option. Then, suddenly, this error popped out: ld: file not found:.././previousproductname.app/previousproductname Steps I followed unsuccessfully to debug: Deleted deriveddata, restarted Xcode. – not resolved. Followed the … Read more

Getting “Repositroy test has failed” error while cloning repository from Gitlab in Android Studio?

You need to download and install git from http://git-scm.com/downloads Then you need to track the git.exe on AndroidStudio: Go to Settings > Project Settings > Version Control > VCSs > Git > Path to Git executable Select (or type) executable path, eg: D:\Program Files (x86)\Git\cmd\git.exe If you installed GitHub Desktop for Windows In case you … Read more

Undefined reference to ‘vtable for xxx’

One or more of your .cpp files is not being linked in, or some non-inline functions in some class are not defined. In particular, takeaway::textualGame()‘s implementation can’t be found. Note that you’ve defined a textualGame() at toplevel, but this is distinct from a takeaway::textualGame() implementation – probably you just forgot the takeaway:: there. What the … Read more

tech