The C++Builder linker will warn you when you mix object files linked with classic and clang together, helping you avoid linker or runtime errors.
Today in 2020, we recommend using the modern Clang compilers, especially with the work we’ve been doing for Win64 (eg entirely new debugger) and the RTL improvements to make upgrading from classic easy. However, many customers upgrade in…
C++ Compilers that ship with C++Builder 10.3 Rio
November 21, 2018
Embarcadero has RTM’d RAD Studio, Delphi and C++Builder 10.3 Rio (version 20.0) today. You can read the press releasehere. Included in the release are several C++ compilers.
C++Builder 10.3 Rio (20.0) C++ Compilers
BCC32 – the classic 32-bit windows…
Convert CSV file to TFDMemTable format JSON file.
September 1, 2017
Author: h.mohri
Convert fromCSVfile to “JSONfile” of “TFDMemTable format”.
This program usesC++Builder 10.2 Tokyo Release 1.
include
#include <iostream>
#include <fstream>
#include <string>
#include…
C++ Builder Header Dependencies
August 30, 2017
Why should you care about header dependencies in C++? One reason is header dependencies can have an impact on building, refactoring, testing and on the structure of your software.
And reducing header dependencies in C++ also reduces compile time dependencies – the dependencies between files and libraries at compile time.
One way to reduce header dependencies in C++ is to avoid including…
Try condition_variable using C++Builder(C++11).
August 12, 2017
Author: h.mohri
std::condition_variable is a class for waiting for thread execution until the condition is satisfied.Used in combination with std::mutex.
I tried the wait() function in std::condition_variable.This is combined withstd::unique_lock<std::mutex>.
I…
Visualize JSON using TTreeView
May 27, 2017
Author: h.mohri
I tried a program that reads a JSON file in C++Builder VCL and displays it in TTreeView component.
This project file is open to public from github.
github.com/mojeld
https://www.microsoft.com/store/productid/9PLPHK05PJF7
Place two…