<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Compiling AC14 &amp;amp; AC15 Add-on Xcode LLVM Compiler in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122436#M6365</link>
    <description>Just to follow up on the previous post with a little more detail:&lt;BR /&gt;
&lt;BR /&gt;
Compiling an AC15 add-on with Xcode 4.3 LLVM GCC works, but the Static Analyser will not run.&lt;BR /&gt;
&lt;BR /&gt;
When the Static Analyser is called (Product-&amp;gt;Analyse), it will compile with the following errors. &lt;BR /&gt;
&lt;BR /&gt;
This error the same as the compile error that stops the build altogether, in the Apple LLVM Compiler 3.0.</description>
    <pubDate>Thu, 23 Feb 2012 20:50:42 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-02-23T20:50:42Z</dc:date>
    <item>
      <title>Compiling AC14 &amp; AC15 Add-on Xcode LLVM Compiler</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122435#M6364</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;I'm trying to get Archicad Add-ons for OSX 10.6/10.7 to compile in Xcode 4.2 or 4.3 using the Apple LLVM Compiler 3.0, so I can use the awesome LLVM Static Analyser.&lt;BR /&gt;&lt;BR /&gt;I have one problem. I'm getting two instances of this compile error:&lt;BR /&gt;"'Mutable' cannot be applied to references."&lt;BR /&gt;&lt;BR /&gt;Do any of the C++ whizzes out there know the compiler setting in LLVM that allows mutable to be applied references? Or at least relaxes the language settings.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Nicholas&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Aug 2023 14:29:05 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122435#M6364</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-02T14:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling AC14 &amp; AC15 Add-on Xcode LLVM Compiler</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122436#M6365</link>
      <description>Just to follow up on the previous post with a little more detail:&lt;BR /&gt;
&lt;BR /&gt;
Compiling an AC15 add-on with Xcode 4.3 LLVM GCC works, but the Static Analyser will not run.&lt;BR /&gt;
&lt;BR /&gt;
When the Static Analyser is called (Product-&amp;gt;Analyse), it will compile with the following errors. &lt;BR /&gt;
&lt;BR /&gt;
This error the same as the compile error that stops the build altogether, in the Apple LLVM Compiler 3.0.</description>
      <pubDate>Thu, 23 Feb 2012 20:50:42 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122436#M6365</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-23T20:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling AC14 &amp; AC15 Add-on Xcode LLVM Compiler</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122437#M6366</link>
      <description>&lt;BLOCKQUOTE&gt;nikko wrote:&lt;BR /&gt;I have one problem. I'm getting two instances of this compile error:&lt;BR /&gt;
 "'Mutable' cannot be applied to references."&lt;/BLOCKQUOTE&gt;
I suspect you're trying to declare a mutable reference member variable. A reference can only be set when it is constructed and can't be modified afterward, so declaring it to be mutable will have no effect.&lt;BR /&gt;
&lt;BR /&gt;
I'm not sure that the LLVM Compiler output would be binary compatible with the ArchiCAD API - be careful, it might result in some very subtle bugs. Perhaps someone from GS could comment on the compatibility of XCode 4 and the LLVM Compiler with the ArchiCAD API?</description>
      <pubDate>Thu, 23 Feb 2012 23:03:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122437#M6366</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2012-02-23T23:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling AC14 &amp; AC15 Add-on Xcode LLVM Compiler</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122438#M6367</link>
      <description>&lt;BLOCKQUOTE&gt;Ralph wrote:&lt;BR /&gt;
I'm not sure that the LLVM Compiler output would be binary compatible with the ArchiCAD API - be careful, it might result in some very subtle bugs. Perhaps someone from GS could comment on the compatibility of XCode 4 and the LLVM Compiler with the ArchiCAD API?&lt;/BLOCKQUOTE&gt;

Xcode 4 is fine, LLVM is also in most of the cases. I found only one compiler bug (not with the API), which has been corrected since then. The LLVM output is binary compatible with the code compiled with GCC.&lt;BR /&gt;
&lt;BR /&gt;
You wouldn't be able to set the same compiler in Xcode 4 anyway, because we use GCC 4.0, and the earliest you can use is GCC 4.2.&lt;BR /&gt;
&lt;BR /&gt;
My recommendation would be to use LLVM for checking, but produce and test the release version with GCC 4.2 for the moment.&lt;BR /&gt;
&lt;BR /&gt;
Best, Akos</description>
      <pubDate>Tue, 28 Feb 2012 16:30:23 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122438#M6367</guid>
      <dc:creator>Akos Somorjai</dc:creator>
      <dc:date>2012-02-28T16:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling AC14 &amp; AC15 Add-on Xcode LLVM Compiler</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122439#M6368</link>
      <description>Hi Guys&lt;BR /&gt;
&lt;BR /&gt;
I have to run Xcode 4.2 on a my new machine running Lion. I have managed to get the project to compile using the LLVM compiler, but the bundle is not being created.? &lt;BR /&gt;
Any help appreciated &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;</description>
      <pubDate>Fri, 02 Mar 2012 05:57:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122439#M6368</guid>
      <dc:creator>Ben Cohen</dc:creator>
      <dc:date>2012-03-02T05:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling AC14 &amp; AC15 Add-on Xcode LLVM Compiler</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122440#M6369</link>
      <description>&lt;BLOCKQUOTE&gt;Ben wrote:&lt;BR /&gt;I have to run Xcode 4.2 on a my new machine running Lion. I have managed to get the project to compile using the LLVM compiler, but the bundle is not being created.?&lt;/BLOCKQUOTE&gt;
You don't have to use XCode 4.2 with Lion - I have both XCode 3.2.6 and 4.2 installed and use either depending on the requirements. I'm using only 3.2.6 for ArchiCAD development.</description>
      <pubDate>Fri, 02 Mar 2012 13:38:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122440#M6369</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2012-03-02T13:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling AC14 &amp; AC15 Add-on Xcode LLVM Compiler</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122441#M6370</link>
      <description>Xcode 3.2.6 will not install correctly on Lion. This is well documented in the apple forums (and you get another warning from apple when you download 3.2.6). It works fine if you have 3.2.6 installed &lt;B&gt;before&lt;/B&gt; you upgrade to Lion from Snow Leopard.&lt;BR /&gt;
But I found the following link on the Apple developer forums. After installing 3.2.6 using this method, it worked&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://anatomicwax.tumblr.com/post/8064949186/installing-xcode-3-2-6-on-lion-redux" target="_blank"&gt;&lt;LINK_TEXT text="http://anatomicwax.tumblr.com/post/8064 ... lion-redux"&gt;http://anatomicwax.tumblr.com/post/8064949186/installing-xcode-3-2-6-on-lion-redux&lt;/LINK_TEXT&gt;&lt;/A&gt;</description>
      <pubDate>Sun, 04 Mar 2012 06:25:28 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122441#M6370</guid>
      <dc:creator>Ben Cohen</dc:creator>
      <dc:date>2012-03-04T06:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Compiling AC14 &amp; AC15 Add-on Xcode LLVM Compiler</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122442#M6371</link>
      <description>&lt;BLOCKQUOTE&gt;Ben wrote:&lt;BR /&gt;Xcode 3.2.6 will not install correctly on Lion.&lt;/BLOCKQUOTE&gt;
Apple are at pains to point out that they don't support 3.2.6 on Lion, and put up minor obstacles to casual installation attempts. But there are several ways to install it and it works fine. You can even get most of the compiler plugins and SDKs in 3.2.6 to work in 4.x, but I wouldn't recommend that approach. The major change is that legacy PPC support has finally ended, and thus any compiler supporting PPC output will be limited.&lt;BR /&gt;
&lt;BR /&gt;
For most developers, the move to XCode 4 in a no-brainer (it's a great update). But plugin development is often fraught with problems of this kind, for the simple reason that you are constrained in many ways by the configuration of the host.</description>
      <pubDate>Sun, 04 Mar 2012 10:32:59 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Compiling-AC14-amp-AC15-Add-on-Xcode-LLVM-Compiler/m-p/122442#M6371</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2012-03-04T10:32:59Z</dc:date>
    </item>
  </channel>
</rss>

