<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'Borlands C++ vs Microsofts C++' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'Borlands C++ vs Microsofts C++' posted on the 'C++ Builder' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 05:27:41 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 05:27:41 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Borlands C++ vs Microsofts C++</title>
      <link>http://www.programmersheaven.com/mb/bcbuilder/364085/364085/borlands-c++-vs-microsofts-c++/</link>
      <description>I have borlands C++, C#, and Delphi.  I then downloaded microsoft's C++ express edition and noticed that is took a mear 1 second to finish a line of code it would take borlands 1 minute in C++ or Delphi.  All I had to do was click release build on microsoft C++, and I get super super fast results.  How would I do this in Borland's C++?  I have clicked under Project &amp;gt;&amp;gt; "Options fastest code possible" but it is still way begin Mircosoft's version.   Is microsoft just faster?&lt;br /&gt;
&lt;br /&gt;
If so I'll be willing to switch&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/bcbuilder/364085/364085/borlands-c++-vs-microsofts-c++/</guid>
      <pubDate>Thu, 02 Aug 2007 10:48:00 -0700</pubDate>
      <category>C++ Builder</category>
    </item>
    <item>
      <title>Re: Borlands C++ vs Microsofts C++</title>
      <link>http://www.programmersheaven.com/mb/bcbuilder/364085/364963/re-borlands-c++-vs-microsofts-c++/#364963</link>
      <description>It's the awe of Microsoft developers and capitial. Borland (i think) couldn't afford clean and efficient codeing. &lt;br /&gt;
I have *so* much trouble with the speed and stability of Borlands C++ personality. The number of locks and bugs is something i've never exprienced with Visual Studio.&lt;br /&gt;
Youre right - everything in borland is 10 times slower than in VS. From the CodeSight (intellisense) to the compileing, project file management, package and includes management...agg everything in Borland C++ personality just feels like a failed copycat of VS.&lt;br /&gt;
&lt;br /&gt;
still, I bought BDS, but the first change I get to convert, i'll take it.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/bcbuilder/364085/364963/re-borlands-c++-vs-microsofts-c++/#364963</guid>
      <pubDate>Fri, 24 Aug 2007 15:52:11 -0700</pubDate>
      <category>C++ Builder</category>
    </item>
    <item>
      <title>Re: Borlands C++ vs Microsofts C++</title>
      <link>http://www.programmersheaven.com/mb/bcbuilder/364085/364988/re-borlands-c++-vs-microsofts-c++/#364988</link>
      <description>: It's the awe of Microsoft developers and capitial. Borland (i think) &lt;br /&gt;
: couldn't afford clean and efficient codeing. &lt;br /&gt;
: I have *so* much trouble with the speed and stability of Borlands &lt;br /&gt;
: C++ personality. The number of locks and bugs is something i've &lt;br /&gt;
: never exprienced with Visual Studio.&lt;br /&gt;
: Youre right - everything in borland is 10 times slower than in VS. &lt;br /&gt;
: From the CodeSight (intellisense) to the compileing, project file &lt;br /&gt;
: management, package and includes management...agg everything in &lt;br /&gt;
: Borland C++ personality just feels like a failed copycat of VS.&lt;br /&gt;
: &lt;br /&gt;
: still, I bought BDS, but the first change I get to convert, i'll &lt;br /&gt;
: take it.&lt;br /&gt;
: &lt;br /&gt;
&lt;span style="color: Blue;"&gt;Wow! I was using Borland before 1995 and it was really quick. Do they really left behind their 'TURBO' paradigm?.. That is sad...&lt;/span&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/bcbuilder/364085/364988/re-borlands-c++-vs-microsofts-c++/#364988</guid>
      <pubDate>Sat, 25 Aug 2007 07:12:22 -0700</pubDate>
      <category>C++ Builder</category>
    </item>
    <item>
      <title>Re: Borlands C++ vs Microsofts C++</title>
      <link>http://www.programmersheaven.com/mb/bcbuilder/364085/365210/re-borlands-c++-vs-microsofts-c++/#365210</link>
      <description>The OP likely messed up some compiler settings, which is easy to do. You should compile for release, skip "dynamic RTL" yada yada.&lt;br /&gt;
&lt;br /&gt;
Every timing comparison I have ever done between Borland and MS compiling the very same code has always been in Borland's favour. MS even compiled slower than gcc in some cases, saying a lot. I have to assume that you aren't talking about compile times, but the speed of the program..?&lt;br /&gt;
&lt;br /&gt;
Note that if you do RAD and use advanced GUI stuff, you have already made the decision not to prioritize speed. Including various libraries in such a project will make any program slow no matter compiler.&lt;br /&gt;
&lt;br /&gt;
MS will likely be less slow than anything out there when it comes to .NET junk. No wonder. But there is no reason to do .NET junk from Borland Builder - if you are doing that, suit yourself. And if you are using .NET, you are certainly not looking for a fast program anyway, since it is using a VM like Java. And you need to provide a ton of runtime crap with your program.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/bcbuilder/364085/365210/re-borlands-c++-vs-microsofts-c++/#365210</guid>
      <pubDate>Mon, 03 Sep 2007 04:34:38 -0700</pubDate>
      <category>C++ Builder</category>
    </item>
  </channel>
</rss>