Boost C++ Libraries: Ticket #11603: make_ppc32_sysv_macho_gas.S apparently has a typo inside https://svn.boost.org/trac10/ticket/11603 <p> I think there is a superfluous % sign on line 85 of make_ppc32_sysv_macho_gas.S (assembler source code) which leads to a syntax error during boost 1.59.0 building: </p> <pre class="wiki"> stw r5, 236(%r3) </pre><p> should be </p> <pre class="wiki"> stw r5, 236(r3) </pre><p> After removing the % sign compilation of 1.59.0 was successful on a PPC 32 bit system (MacOSX 10.5.8). </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/11603 Trac 1.4.3 viboes Wed, 02 Sep 2015 17:54:07 GMT component changed; owner set https://svn.boost.org/trac10/ticket/11603#comment:1 https://svn.boost.org/trac10/ticket/11603#comment:1 <ul> <li><strong>owner</strong> set to <span class="trac-author">olli</span> </li> <li><strong>component</strong> <span class="trac-field-old">None</span> → <span class="trac-field-new">context</span> </li> </ul> Ticket boost@… Thu, 01 Oct 2015 07:22:27 GMT <link>https://svn.boost.org/trac10/ticket/11603#comment:2 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/11603#comment:2</guid> <description> <p> This would theoretically solve the problem reported in <a class="new ticket" href="https://svn.boost.org/trac10/ticket/11573" title="#11573: Bugs: Mac OSX 10.5.8 install of Boost v1.59 (new)">#11573</a>. </p> <p> I found <a class="ext-link" href="https://www.cs.uaf.edu/2011/fall/cs301/lecture/11_21_PowerPC.html"><span class="icon">​</span>this page</a> describing the syntax of the Apple assembler, <code>as</code>, which is what would most likely be used on OS X. The page mentions that the "<code>%</code>" syntax is what is used in the GNU assembler, <code>gas</code>. So it sounds like "<code>%r3</code>" is not a typo, but merely syntax for the wrong brand of assembler. </p> </description> <category>Ticket</category> </item> <item> <dc:creator>olli</dc:creator> <pubDate>Fri, 02 Oct 2015 17:57:18 GMT</pubDate> <title>status changed; resolution set https://svn.boost.org/trac10/ticket/11603#comment:3 https://svn.boost.org/trac10/ticket/11603#comment:3 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> thx </p> Ticket