Page 1 of 2

"BCC 6.3" Released

Posted: Sat Sep 25, 2010 3:39 am
by andijahja
Hello,

The new Borland Compiler version 6.3 is released packed with Embarcadero RAD Studio XE 2011. It is a better Borland family compiler, IMHO.
Download and Install Trial Version here: http://www.embarcadero.com/products/rad-studio

Re: "BCC 6.3" Released

Posted: Sat Sep 25, 2010 7:02 am
by Antonio Linares
Andi,

Would you mind to create a ZIP file with just the BCC 6.3 required files ?

It may greatly ease the way to test it to many users, thanks

Re: "BCC 6.3" Released

Posted: Sat Sep 25, 2010 9:48 am
by andijahja
Antonio Linares wrote:Andi,

Would you mind to create a ZIP file with just the BCC 6.3 required files ?
It may greatly ease the way to test it to many users, thanks
OK, here it is:

http://www.mediafire.com/?b71rccdw8vlcl2b

Re: "BCC 6.3" Released

Posted: Sat Sep 25, 2010 10:08 am
by andijahja
As a note, to pacify warnings, you have to modify a line refers to definition of "UNREFERENCED_PARAMETER" to "(void)" in WINNT.H as follows:

Code: Select all

#if ! defined(lint)
#define UNREFERENCED_PARAMETER(P)          (void)(P)
// #define UNREFERENCED_PARAMETER(P)          (P)

Re: "BCC 6.3" Released

Posted: Sat Sep 25, 2010 10:08 am
by Antonio Linares
Andi,

Thanks!

Re: "BCC 6.3" Released

Posted: Sat Sep 25, 2010 1:56 pm
by toninhofwi
Andi,

Thanks a lot.

Toninho.

Re: "BCC 6.3" Released

Posted: Sat Sep 25, 2010 4:35 pm
by luiz53
compilei meu aplicativo com 6.3
e funcionou 100 %


\XFONTES\XRETAG\winretag.PRG(3151) Warning W0002 Ambiguous reference, assuming memvar 'I'
D:\TOOLS\BCC63\bin\bcc32 -c -tWM -ID:\TOOLS\FWH\include -ID:\TOOLS\HARBOUR\include -ID:\TOOLS\BCC63\include -oobj\winretag obj\winretag.c
Embarcadero C++ 6.30 for Win32 Copyright (c) 1993-2010 Embarcadero Technologies, Inc.
obj\winretag.c:

Re: "BCC 6.3" Released error leer uuid.lib ok

Posted: Sat Sep 25, 2010 6:37 pm
by Ruben Fernandez
Porque me dara error en uuid.lib, alguien sabe, ya copie la uuid.lib al directorio de las lib pero me da error igual.

Gracias


Solucionado, me faltaba los archivos de configuracion, inlink32.cfg y bcc32.cfg.
Impresionante poder compilar nuevamente todo con una version mas nueva y
no tener inconvenientes.

Saludos

Re: "BCC 6.3" Released error leer uuid.lib ok

Posted: Sat Sep 25, 2010 7:50 pm
by wmormar
Ruben Fernandez wrote:Porque me dara error en uuid.lib, alguien sabe, ya copie la uuid.lib al directorio de las lib pero me da error igual.

Gracias


Solucionado, me faltaba los archivos de configuracion, inlink32.cfg y bcc32.cfg.
Impresionante poder compilar nuevamente todo con una version mas nueva y
no tener inconvenientes.

Saludos
Ruben, si es version DEMO que restricciones tiene?

Re: "BCC 6.3" Released

Posted: Sun Sep 26, 2010 12:08 pm
by Ruben Fernandez
William: No tengo idea, ya que la probe para compilar un programa que estoy haciendo para saber que pasaba, y todo fue bien.

Saludos

Re: "BCC 6.3" Released

Posted: Sun Sep 26, 2010 1:24 pm
by wmormar
Ruben Fernandez wrote:William: No tengo idea, ya que la probe para compilar un programa que estoy haciendo para saber que pasaba, y todo fue bien.

Saludos
ok, hare mis pruebas. Gracias

saludos

Re: "BCC 6.3" Released

Posted: Sun Sep 26, 2010 7:32 pm
by Ehab Samir Aziz
I had that error when I used BCC 6.3 . I am using Harbour 1.0.0 Intl. (Rev. 9201) and FiveWin for Harbour 8.06 - Jun. 2008 .

TXDATA.C:
G:\bcc\bin\bcc32 -M -c -IG:\harbour\include TXDATA.C
Embarcadero C++ 6.30 for Win32 Copyright (c) 1993-2010 Embarcadero Technologies,
Inc.
TXDATA.C:
G:\bcc\bin\bcc32 -M -c -IG:\harbour\include AUTORUSE.C
Embarcadero C++ 6.30 for Win32 Copyright (c) 1993-2010 Embarcadero Technologies,
Inc.
AUTORUSE.C:
G:\bcc\bin\bcc32 -M -c -IG:\harbour\include D_EXPAND.C
Embarcadero C++ 6.30 for Win32 Copyright (c) 1993-2010 Embarcadero Technologies,
Inc.
D_EXPAND.C:
G:\bcc\bin\bcc32 -M -c -IG:\harbour\include CUST.C
Embarcadero C++ 6.30 for Win32 Copyright (c) 1993-2010 Embarcadero Technologies,
Inc.
CUST.C:
G:\bcc\bin\bcc32 -M -c -IG:\harbour\include TMAIN.C
Embarcadero C++ 6.30 for Win32 Copyright (c) 1993-2010 Embarcadero Technologies,
Inc.
TMAIN.C:
Embarcadero C++ 6.30 for Win32 Copyright (c) 1993-2010 Embarcadero Technologies,
Inc.
TMAIN.C:
Turbo Incremental Link 6.10 Copyright (c) 1997-2010 Embarcadero Technologies, In
c.
Error: Unresolved external '__rwstd::__rw_stdexcept_NoNamedException' referenced
from G:\FWH\LIB\FIVEHC.LIB|ANIGIF
Error: Unable to perform link
* Application successfully built.
'tmain' is not recognized as an internal or external command,
operable program or batch file.

G:\programs\clipper\FWH\tdata\sitex>

Re: "BCC 6.3" Released

Posted: Tue Sep 28, 2010 12:19 am
by andijahja
Hello Ehab,

__rwstd::__rw_stdexcept_NoNamedException is C++ exception specific to Borland C++ version 5.5 and no longer exist in the later versions.
To resolve the problem, you should recompile all your C files with BCC 6.3.

Re: "BCC 6.3" Released

Posted: Tue Sep 28, 2010 11:28 am
by Enrico Maria Giordano
I noticed an increasing in the EXE size using this new compiler. What is the exact reason? Is there a way to reduce it back?

EMG

Re: "BCC 6.3" Released

Posted: Tue Sep 28, 2010 1:36 pm
by andijahja
Enrico Maria Giordano wrote:I noticed an increasing in the EXE size using this new compiler. What is the exact reason? Is there a way to reduce it back?
You must be comparing with 5.5, else the exe of 6.3 must be smaller that other previous versions as shown below:

harbour.exe compiled with different version of BCC:

Directory of D:\DEV\bin\55
09/27/2010 06:53 PM 614,912 harbour.exe

Directory of D:\DEV\bin\58
09/27/2010 06:53 PM 680,960 harbour.exe

Directory of D:\DEV\bin\59
09/27/2010 06:53 PM 683,008 harbour.exe

Directory of D:\DEV\bin\61
09/27/2010 06:53 PM 725,504 harbour.exe

Directory of D:\DEV\bin\62
09/27/2010 06:54 PM 629,760 harbour.exe

Directory of D:\DEV\bin\63
09/27/2010 06:54 PM 627,200 harbour.exe

The reason of increasing in application size must be due to that versions newer than 5.5 no longer uses RougueWave http://www.roguewave.com/ runtime. I have no knowledge to decrease the exe size :-)