<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div apple-content-edited="true"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">Hi,</span></div><div apple-content-edited="true"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><br></span></div><div apple-content-edited="true"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">I'm trying to build Mercury and running into an issue. The machine is Intel, Mac OS X 10.7 (Lion) with Xcode 4 (clang).</span></div><div apple-content-edited="true"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><br></span></div><div apple-content-edited="true">My goal is to have a Mercury install with parallel, high-level C, Java and Erlang backends, I'm trying to follow these steps I created for myself based on my understanding of Mercury from reading of the manuals and the INSTALL and README files. </div><div apple-content-edited="true"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><br></span></div><div apple-content-edited="true"><span class="Apple-style-span" style="orphans: 2; text-align: -webkit-auto; text-indent: 0px; widows: 2; -webkit-text-decorations-in-effect: none; "><div apple-content-edited="true"># Create a minimal, bootstrap Mercury</div><div apple-content-edited="true">./configure --with-cc=clang --disable-most-grades</div><div apple-content-edited="true">make</div><div apple-content-edited="true">sudo make install</div><div apple-content-edited="true"><br></div><div apple-content-edited="true"># Add Mercury's bin and man to your paths</div><div apple-content-edited="true">ln -s /usr/local/mercury-11.07.1 /usr/local/mercury</div><div apple-content-edited="true">export PATH=$PATH:/usr/local/mercury/bin</div><div apple-content-edited="true">export MANPATH=$MANPATH:/usr/local/mercury/man</div><div apple-content-edited="true"><br></div><div apple-content-edited="true"># Create a fairly complete Mercury with Java and Erlang</div><div apple-content-edited="true">make realclean</div><div apple-content-edited="true">./configure --with-cc=clang --enable-erlang-grade --enable-java-grade</div><div apple-content-edited="true">make</div><div apple-content-edited="true">sudo make install</div><div apple-content-edited="true"><br></div><div apple-content-edited="true">But the 2nd build is a not working. (It fails with the errors below.)</div><div apple-content-edited="true"><br></div><div apple-content-edited="true">To simplify things, I'm trying doing the 2nd build THE SAME as the first. That is with:</div><div apple-content-edited="true"><br></div><div apple-content-edited="true">./configure --with-cc=clang --disable-most-grades</div><div apple-content-edited="true"><br></div><div apple-content-edited="true">So that the only difference between the 1st build that works and the 2nd build that doesn't is that I already have a bootstrapped Mercury in the PATH.</div><div apple-content-edited="true"><br></div><div apple-content-edited="true">What happens is this:</div><div apple-content-edited="true"><br></div><div apple-content-edited="true"><div apple-content-edited="true">mercury_compile: cannot find</div><div apple-content-edited="true">  `transform_hlds.ctgc.structure_reuse.indirect.int3' in directories .,</div><div apple-content-edited="true">  ../library, ../browser, ../ssdb, ../mdbcomp</div><div apple-content-edited="true"><br></div><div apple-content-edited="true">The error is here:</div><div apple-content-edited="true"><br></div><div apple-content-edited="true"><a href="https://gist.github.com/428ac9164ccef9081830">https://gist.github.com/428ac9164ccef9081830</a></div><div apple-content-edited="true"><br></div><div apple-content-edited="true">And the output from the full 2nd build is here:</div><div apple-content-edited="true"><br></div><div apple-content-edited="true"><a href="https://gist.github.com/f720f1a30ec86c7cb03d">https://gist.github.com/f720f1a30ec86c7cb03d</a></div><div apple-content-edited="true"><br></div><div apple-content-edited="true"><br></div><div apple-content-edited="true">I'm eager to get this working. Any thoughts?</div><div apple-content-edited="true"><br></div><div apple-content-edited="true">Cheers,</div><div apple-content-edited="true">Sean</div><div apple-content-edited="true"><br></div><div apple-content-edited="true"><br></div><div apple-content-edited="true"><br></div></div></span><br class="Apple-interchange-newline">
</div>
<br></body></html>