<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Compiling Erlang on Ubuntu</title>
	<atom:link href="http://ciarang.com/posts/compiling-erlang-on-ubuntu/feed" rel="self" type="application/rss+xml" />
	<link>http://ciarang.com/posts/compiling-erlang-on-ubuntu</link>
	<description>Random things I&#039;ve written about stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 17:08:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Nina</title>
		<link>http://ciarang.com/posts/compiling-erlang-on-ubuntu/comment-page-1#comment-15249</link>
		<dc:creator>Nina</dc:creator>
		<pubDate>Thu, 03 Sep 2009 00:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciarang.com/index.php/archives/93#comment-15249</guid>
		<description>Any ideas what package we need for wx to work? It&#039;s included in R13B01.

Thanks
Nina</description>
		<content:encoded><![CDATA[<p>Any ideas what package we need for wx to work? It&#8217;s included in R13B01.</p>
<p>Thanks<br />
Nina</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krzysztof Kliś</title>
		<link>http://ciarang.com/posts/compiling-erlang-on-ubuntu/comment-page-1#comment-1188</link>
		<dc:creator>Krzysztof Kliś</dc:creator>
		<pubDate>Tue, 26 Aug 2008 21:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciarang.com/index.php/archives/93#comment-1188</guid>
		<description>For R12-3 you also need to install unixodbc-dev package before compiling Erlang if you want to have odbc support enabled.</description>
		<content:encoded><![CDATA[<p>For R12-3 you also need to install unixodbc-dev package before compiling Erlang if you want to have odbc support enabled.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://ciarang.com/posts/compiling-erlang-on-ubuntu/comment-page-1#comment-645</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Wed, 30 Apr 2008 16:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciarang.com/index.php/archives/93#comment-645</guid>
		<description>I encountered the same errors. I did a 

      make clean 
and then a 
      make 
and the errors went away.

Peter</description>
		<content:encoded><![CDATA[<p>I encountered the same errors. I did a </p>
<p>      make clean<br />
and then a<br />
      make<br />
and the errors went away.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Januar Simarmata</title>
		<link>http://ciarang.com/posts/compiling-erlang-on-ubuntu/comment-page-1#comment-575</link>
		<dc:creator>Januar Simarmata</dc:creator>
		<pubDate>Tue, 08 Apr 2008 04:23:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciarang.com/index.php/archives/93#comment-575</guid>
		<description>Yeah... to be sure I build from R11-5 source and confirm that building is working fine.

But, it is not the case for R12-1. The error after &#039;make&#039; is below:

januarvs@kubuntuku:~/otp_src_R12B-1$ make
cd erts/emulator &amp;&amp; ERL_TOP=/home/januarvs/otp_src_R12B-1 make generate depend
make[1]: Entering directory `/home/januarvs/otp_src_R12B-1/erts/emulator&#039;
make -f i686-pc-linux-gnu/Makefile generate
make[2]: Entering directory `/home/januarvs/otp_src_R12B-1/erts/emulator&#039;
gcc  -g -O3 -I/home/januarvs/otp_src_R12B-1/erts/i686-pc-linux-gnu  -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -D_GNU_SOURCE  -DHAVE_CONFIG_H -Wall -Wstrict-prototypes -Wmissing-prototypes -Wdeclaration-after-statement -DUSE_THREADS -D_THREAD_SAFE -D_REENTRANT -D_POSIX_THREAD_SAFE_FUNCTIONS  -Ibeam -Isys/unix -Isys/common -Ii686-pc-linux-gnu/opt/plain -Ii686-pc-linux-gnu -Izlib -Ihipe -I../include/internal -I../include/internal/i686-pc-linux-gnu -c hipe/hipe_mkliterals.c -o obj/i686-pc-linux-gnu/opt/plain/hipe_mkliterals.o
hipe/hipe_mkliterals.c:388: error: \u2018X86_LEAF_WORDS\u2019 undeclared here (not in a function)
hipe/hipe_mkliterals.c:389: error: \u2018X86_NR_ARG_REGS\u2019 undeclared here (not in a function)
make[2]: *** [obj/i686-pc-linux-gnu/opt/plain/hipe_mkliterals.o] Error 1
make[2]: Leaving directory `/home/januarvs/otp_src_R12B-1/erts/emulator&#039;
make[1]: *** [generate] Error 2
make[1]: Leaving directory `/home/januarvs/otp_src_R12B-1/erts/emulator&#039;
make: *** [depend] Error 2
januarvs@kubuntuku:~/otp_src_R12B-1$

I tried to build without hipe, by submitting &#039;configure --disable-hipe&#039; but still not lucky.</description>
		<content:encoded><![CDATA[<p>Yeah&#8230; to be sure I build from R11-5 source and confirm that building is working fine.</p>
<p>But, it is not the case for R12-1. The error after &#8216;make&#8217; is below:</p>
<p>januarvs@kubuntuku:~/otp_src_R12B-1$ make<br />
cd erts/emulator &amp;&amp; ERL_TOP=/home/januarvs/otp_src_R12B-1 make generate depend<br />
make[1]: Entering directory `/home/januarvs/otp_src_R12B-1/erts/emulator&#8217;<br />
make -f i686-pc-linux-gnu/Makefile generate<br />
make[2]: Entering directory `/home/januarvs/otp_src_R12B-1/erts/emulator&#8217;<br />
gcc  -g -O3 -I/home/januarvs/otp_src_R12B-1/erts/i686-pc-linux-gnu  -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -D_GNU_SOURCE  -DHAVE_CONFIG_H -Wall -Wstrict-prototypes -Wmissing-prototypes -Wdeclaration-after-statement -DUSE_THREADS -D_THREAD_SAFE -D_REENTRANT -D_POSIX_THREAD_SAFE_FUNCTIONS  -Ibeam -Isys/unix -Isys/common -Ii686-pc-linux-gnu/opt/plain -Ii686-pc-linux-gnu -Izlib -Ihipe -I../include/internal -I../include/internal/i686-pc-linux-gnu -c hipe/hipe_mkliterals.c -o obj/i686-pc-linux-gnu/opt/plain/hipe_mkliterals.o<br />
hipe/hipe_mkliterals.c:388: error: \u2018X86_LEAF_WORDS\u2019 undeclared here (not in a function)<br />
hipe/hipe_mkliterals.c:389: error: \u2018X86_NR_ARG_REGS\u2019 undeclared here (not in a function)<br />
make[2]: *** [obj/i686-pc-linux-gnu/opt/plain/hipe_mkliterals.o] Error 1<br />
make[2]: Leaving directory `/home/januarvs/otp_src_R12B-1/erts/emulator&#8217;<br />
make[1]: *** [generate] Error 2<br />
make[1]: Leaving directory `/home/januarvs/otp_src_R12B-1/erts/emulator&#8217;<br />
make: *** [depend] Error 2<br />
januarvs@kubuntuku:~/otp_src_R12B-1$</p>
<p>I tried to build without hipe, by submitting &#8216;configure &#8211;disable-hipe&#8217; but still not lucky.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Januar Simarmata</title>
		<link>http://ciarang.com/posts/compiling-erlang-on-ubuntu/comment-page-1#comment-574</link>
		<dc:creator>Januar Simarmata</dc:creator>
		<pubDate>Tue, 08 Apr 2008 03:51:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciarang.com/index.php/archives/93#comment-574</guid>
		<description>It looks doesn&#039;t work for new version of Erlang, R12B-1.</description>
		<content:encoded><![CDATA[<p>It looks doesn&#8217;t work for new version of Erlang, R12B-1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ciaran&#8217;s Random Writings &#187; Blog Archive &#187; Compiling ejabberd on Ubuntu</title>
		<link>http://ciarang.com/posts/compiling-erlang-on-ubuntu/comment-page-1#comment-75</link>
		<dc:creator>Ciaran&#8217;s Random Writings &#187; Blog Archive &#187; Compiling ejabberd on Ubuntu</dc:creator>
		<pubDate>Fri, 31 Aug 2007 19:31:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ciarang.com/index.php/archives/93#comment-75</guid>
		<description>[...] Ciaran&#8217;s Random Writings Random things I&#8217;ve written about stuff      &#171; Compiling Erlang on Ubuntu [...]</description>
		<content:encoded><![CDATA[<p>[...] Ciaran&#8217;s Random Writings Random things I&#8217;ve written about stuff      &laquo; Compiling Erlang on Ubuntu [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

