Embarcadero Releases Free C++ Compiler for Windows

Embarcadero Releases Free C++ Compiler for Windows

Postby vensanto » Fri Jul 22, 2016 7:03 am

User avatar
vensanto
 
Posts: 58
Joined: Thu Oct 13, 2005 1:26 pm
Location: ITALIA

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby Antonio Linares » Fri Jul 22, 2016 7:17 am

Many thanks for the info.

Its a new version:
Embarcadero C++ 7.20 for Win32 Copyright (c) 2012-2016 Embarcadero Technologies, Inc.

If you all agree, I believe we should use it from now on
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41439
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby bpd2000 » Fri Jul 22, 2016 8:12 am

Antonio Linares wrote:If you all agree, I believe we should use it from now on

+1
Regards, Greetings

Try FWH. You will enjoy it's simplicity and power.!
User avatar
bpd2000
 
Posts: 153
Joined: Tue Aug 05, 2014 9:48 am
Location: India

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby Antonio Linares » Fri Jul 22, 2016 9:14 am

We will publish FWH 16.06 first

then we will migrate to BCC 7.20
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41439
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby rhlawek » Fri Jul 22, 2016 6:48 pm

I just read the specs on this product, it looks to me that the free version is 32 bit only.
User avatar
rhlawek
 
Posts: 193
Joined: Sun Jul 22, 2012 7:01 pm

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby Antonio Linares » Sat Jul 23, 2016 6:36 am

Robb,

Yes, it seems so
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41439
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby toninhofwi » Mon Jul 25, 2016 12:16 am

Hi friends,

It is not so easy, this compiler is very diferente from old bcc's and compile harbour require some deeper changes in core code.

I'm moving to mingw, harbour is working perfect with it and mingw is free / open source / well maintained.

Regards,

Toninho.
toninhofwi
 
Posts: 170
Joined: Tue Oct 18, 2005 10:01 am

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby vilian » Mon Jul 25, 2016 1:37 am

Good luck to you !
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
 
Posts: 920
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby Enrico Maria Giordano » Mon Jul 25, 2016 8:46 am

toninhofwi wrote:Hi friends,

It is not so easy, this compiler is very diferente from old bcc's and compile harbour require some deeper changes in core code.

I'm moving to mingw, harbour is working perfect with it and mingw is free / open source / well maintained.

Regards,

Toninho.


I'm using BCC 7.20 and found no difference with older versions.

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8382
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby richard-service » Mon Jul 25, 2016 9:39 am

Hi

I'm using BCC72-32bit from xHarbour whoxxx.com site work fine.
Best Regards,

Richard

Harbour 3.2.0dev (r2402101027) => Borland C++ v7.7 32bit
MySQL v5.7 /ADS v10
Harbour 3.2.0dev (r2011030937) => Borland C++ v7.4 64bit
User avatar
richard-service
 
Posts: 773
Joined: Tue Oct 16, 2007 8:57 am
Location: New Taipei City, Taiwan

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby byte-one » Mon Jul 25, 2016 10:04 am

Now exists two 32-Bit-Compilers:
1. The bcc32 as in earlier versions
2. The BCC32c is a clang-based compiler (also the 64-Bit-Compiler). For this compiler all the libs from Harbour and FW must recompiled.
Regards,
Günther
---------------------------------
office@byte-one.com
User avatar
byte-one
 
Posts: 1048
Joined: Mon Oct 24, 2005 9:54 am
Location: Austria

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby toninhofwi » Mon Jul 25, 2016 1:15 pm

byte-one wrote:Now exists two 32-Bit-Compilers:
1. The bcc32 as in earlier versions
2. The BCC32c is a clang-based compiler (also the 64-Bit-Compiler).
For this compiler all the libs from Harbour and FW must recompiled.


This is the problem: bcc32 is ended, and only clang-based is available.

I'm testing gcc by now and fwh is working fine with it.

Regards.
toninhofwi
 
Posts: 170
Joined: Tue Oct 18, 2005 10:01 am

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby Enrico Maria Giordano » Thu Jul 28, 2016 2:14 pm

I'm trying the new CLANG based BCC 7.2. First problem: it seems not complete. As an example, the command

bcc32c -h -O reports, among the other options:

Code: Select all  Expand view
-OS     Enable Pentium instruction scheduling


But using it I get

Code: Select all  Expand view
Warning: option '-OS' is not supported in Clang-based compiler.


So at least the docs is not updated. Is there an updated command line docs somewhere?

Anyway, I made some very early tests and at least it seems faster in compiling than the old 7.2.

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8382
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby Enrico Maria Giordano » Thu Jul 28, 2016 2:59 pm

Another problem. In some include files there is

Code: Select all  Expand view
#include <xtgmath.h>


but xtgmath.h is missing.

For me this compiler is not yet usable.

EMG
User avatar
Enrico Maria Giordano
 
Posts: 8382
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia

Re: Embarcadero Releases Free C++ Compiler for Windows

Postby mastintin » Thu Jul 28, 2016 3:29 pm

Enrico Maria Giordano wrote:Another problem. In some include files there is

Code: Select all  Expand view
#include <xtgmath.h>


but xtgmath.h is missing.

For me this compiler is not yet usable.

EMG


Enrico , xtgmath.h file in C:\BCC101\include\dinkumware64

the command line that appears here works well for me :
viewtopic.php?f=6&t=32742#p192491
User avatar
mastintin
 
Posts: 1516
Joined: Thu May 27, 2010 2:06 pm

Next

Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 36 guests