user336359
user336359

Reputation: 1284

How to set compiler in embarcadero C++ builder?

How to set compiler in embarcadero C++ builder? I want to set bcc64 as a compiler, but cannot see the option for it, and my projects are being compiled with bcc32.

Upvotes: 1

Views: 2269

Answers (1)

Remy Lebeau
Remy Lebeau

Reputation: 597971

The IDE chooses the compiler for you, based on what type of file is being compiled and what Platform it is being compiled for. If you want to compile a 64-bit executable, you have to go into the Project Manager and add a 64-bit Platform to the project first and then set it as the active Platform. A project can have multiple Platforms added, each with its own set of configuration options. This is covered in detail on Embarcadero's online wiki.

Upvotes: 2

Related Questions