WineHQ

Borland C++Builder

No Screenshot

Submit Screenshot
This is the free command line C++ compiler from Borland.

Application Details:

Version: 5.5.1
License:
URL: http://www.borland.com/cbuilde...
Votes: 0
Latest Rating: Platinum
Latest Wine Version Tested: 1.0.0

Maintainers: About Maintainership

No maintainers. Volunteer today!

Test Results

Old test results
The test results for this version are very old, and as such they may not represent the current state of Wine. Please consider submitting a new test report.
Selected Test Results

What works

freecommandLinetools.exe runs

Compilation of "hello.cpp" using c++ compiles, links and runs.

Created library within our JAM code base, compiled and linked.

What does not

Workarounds

What was not tested

resource compilation, etc.

Hardware tested

Graphics:

  • GPU:
  • Driver:

Additional Comments

add to user.reg [Environment] 1213808244 "Path"="c:\\windows;c:\\windows\\system32;c:\\Borland\\BCC55\\Bin" create c:\\Borland\\BCC55\\Bin\\bcc32.cfg -IC:\BORLAND\BCC55\INCLUDE -LC:\BORLAND\BCC55\LIB create c:\\Borland\\BCC55\\Bin\\ilink32.cfg -LC:\BORLAND\BCC55\LIB

selected in Test Results table below
Operating systemTest dateWine versionInstalls?Runs?Used
Workaround?
RatingSubmitter
CurrentGentoo Linux x86_64Jun 18 20081.0.0Yes Yes Platinuman anonymous user 
ShowGentoo Linux x86_64Mar 29 20080.9.58.N/A Yes Platinuman anonymous user 
ShowFedora 7Sep 27 20070.9.44.Yes Yes Goldan anonymous user 

Known Bugs

Bug # Description Status Resolution Other apps affected
13955 owner-drawn combobox height different to windows NEW View

Show all bugs

HowTo / Notes

HOWTO
by Luke Stedman (­September 27th 2007)

­---- Download ----
Borland C++ Builder can be downloaded at:
www.codegear.com/products/cppbuilder

Borland C++ Builder information:
dn.codegear.com/article/20633

---- Installation ----
[ xxx@xxx tmp]$ wine freecommandLinetools.exe

You will get a few warnings/errors...

wine: creating configuration directory '/home/xxx/.wine'...
Xlib: extension "XFree86-DRI" missing on display ":0.0".
Xlib: extension "XFree86-DRI" missing on display ":0.0".
Xlib: extension "XFree86-DRI" missing on display ":0.0".
...
fixme:richedit:RichEditWndProc_common WM_STYLECHANGING: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGED: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGING: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGED: stub

---- Post Installation ----
You need to create .cfg files in the Bin directory of the installation, the paths need to be in "Windows" format...

Create bcc32.cfg file in Bin directory containing:
-I"C:\Borland\BCC55\Include"
-L"C:\Borland\BCC55\Lib"

Create ilink32.cfg file in Bin directory containing:
-L"C:\Borland\BCC55\Lib"

---- Usage ----

You can now compile and link binaries in two possible ways:

1. Compile from Bin directory
When compiled in the Bin directory using bcc32.exe the binary will compile and link without issue, the output will be in the Bin directory.

2. Compile and Link separately
You can compile the source file into a obj file using bcc32.exe and then link using ilink32.exe separately from any directory.

-------------------------------------------------

Use of makefiles
by Taiko on Sunday February 22nd 2009, 14:05
If you expand the Environment variable "path" like in the description on top of this article its even possible to use custom makefile.
For example create a file named "makefile" and type in the following text.

include = C:\Programme\Borland\BCC55\Include
lib = C:\Programme\Borland\BCC55\Lib
CPP = bcc32

helloworld.exe: helloworld.obj
$(CPP) -I$(include) -L$(lib) helloworld.obj -o$@

.cpp.obj:
$(CPP) -I$(include) -L$(lib) -c $<

I tested it with the "wine cmd.exe" command line.
You can now compile a c++ file "helloworld.cpp" by simplify typing in "make" (without quotes).

Comments

Comments Disabled

Comments for this application have been disabled because there are no maintainers.
Back