<?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: Install Roadsend PHP Compiler on Ubuntu - without compiling anything!</title>
	<atom:link href="http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/</link>
	<description>The place for interesting things</description>
	<lastBuildDate>Tue, 07 Feb 2012 11:40:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: FootPrints</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-25718</link>
		<dc:creator>FootPrints</dc:creator>
		<pubDate>Mon, 25 Jul 2011 10:22:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-25718</guid>
		<description>[...] Install Roadsend PHP Compiler on Ubuntu &#8211; without compiling anything! at Compdigitec Labs [...]</description>
		<content:encoded><![CDATA[<p>[...] Install Roadsend PHP Compiler on Ubuntu &#8211; without compiling anything! at Compdigitec Labs [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Quan Bui</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-6053</link>
		<dc:creator>Quan Bui</dc:creator>
		<pubDate>Thu, 03 Jun 2010 03:28:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-6053</guid>
		<description>hoangquan@ubuntu:/var/www$ pcc -h

Warning: /y/usr/etc/pcc.conf: Specified directory does not exist: “./” in unknown on line 0

Warning: /y/usr/etc/pcc.conf: Specified directory does not exist: “/usr/local/lib/” in unknown on line 0

Anybody help me, please?
Thanks all. I very like this topic.</description>
		<content:encoded><![CDATA[<p>hoangquan@ubuntu:/var/www$ pcc -h</p>
<p>Warning: /y/usr/etc/pcc.conf: Specified directory does not exist: “./” in unknown on line 0</p>
<p>Warning: /y/usr/etc/pcc.conf: Specified directory does not exist: “/usr/local/lib/” in unknown on line 0</p>
<p>Anybody help me, please?<br />
Thanks all. I very like this topic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-5165</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Sun, 10 Jan 2010 15:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-5165</guid>
		<description>I got the &#039;/y/usr/etc/pcc.conf not found&#039; error too.
Without really working out what Roadsend is doing, this seems to be due to assumptions about the location of standard directories that aren&#039;t true in my case (Ubuntu 9.04).  It&#039;s nothing to do with LD_LIBRARY_PATH not being set.

First, /y is a symlink to /, so /y/usr/etc/pcc.conf is the same file as /usr/etc/pcc.conf.  Or it would be if it existed.  It&#039;s actually installed to /usr/local/etc/pcc.conf

To fix this, create the dir and symlink to the file:
cd /usr
sudo mkdir etc
cd etc
sudo ln -s /usr/local/etc/pcc.conf pcc.conf

This will make pcc.conf visible to the program.

Then the next error shows up: it can&#039;t find libphp-u_gtk3.0c.so.  In my Ubuntu 9.04, it and other libraries are in /usr/local/lib.

To fix this we must edit pcc.conf
sudo gedit /usr/local/etc/pcc.conf

in pcc.conf, under the line
(library &quot;./&quot; &quot;/y/usr/lib&quot;)
add these lines

;ADDED because that&#039;s where libphp and other libraries are
(library &quot;./&quot; &quot;/usr/local/lib/&quot;)

The next error I got was because I don&#039;t have php-gtk installed.  You may already have it, or want to install it, but I simply removed &#039; php-gtk&#039; from the two lines which contain it.  Recommend you save the old line versions to comments in case you need them and forget what you did.

This has got me to the &#039;hello world&#039; stage.  I&#039;ll report on further issues as they come up.</description>
		<content:encoded><![CDATA[<p>I got the &#8216;/y/usr/etc/pcc.conf not found&#8217; error too.<br />
Without really working out what Roadsend is doing, this seems to be due to assumptions about the location of standard directories that aren&#8217;t true in my case (Ubuntu 9.04).  It&#8217;s nothing to do with LD_LIBRARY_PATH not being set.</p>
<p>First, /y is a symlink to /, so /y/usr/etc/pcc.conf is the same file as /usr/etc/pcc.conf.  Or it would be if it existed.  It&#8217;s actually installed to /usr/local/etc/pcc.conf</p>
<p>To fix this, create the dir and symlink to the file:<br />
cd /usr<br />
sudo mkdir etc<br />
cd etc<br />
sudo ln -s /usr/local/etc/pcc.conf pcc.conf</p>
<p>This will make pcc.conf visible to the program.</p>
<p>Then the next error shows up: it can&#8217;t find libphp-u_gtk3.0c.so.  In my Ubuntu 9.04, it and other libraries are in /usr/local/lib.</p>
<p>To fix this we must edit pcc.conf<br />
sudo gedit /usr/local/etc/pcc.conf</p>
<p>in pcc.conf, under the line<br />
(library &#8220;./&#8221; &#8220;/y/usr/lib&#8221;)<br />
add these lines</p>
<p>;ADDED because that&#8217;s where libphp and other libraries are<br />
(library &#8220;./&#8221; &#8220;/usr/local/lib/&#8221;)</p>
<p>The next error I got was because I don&#8217;t have php-gtk installed.  You may already have it, or want to install it, but I simply removed &#8216; php-gtk&#8217; from the two lines which contain it.  Recommend you save the old line versions to comments in case you need them and forget what you did.</p>
<p>This has got me to the &#8216;hello world&#8217; stage.  I&#8217;ll report on further issues as they come up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-4986</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sat, 14 Nov 2009 20:54:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-4986</guid>
		<description>FYI I had the same error as Tom:
&gt;&gt;&gt; Config file /y/usr/etc/pcc.conf not found.
Error: problem running command ‘bigloo’, exit status 1

I had added export LD_LIBRARY_PATH=/usr/local/lib to the profile, but I think it might require you to log out &amp; back in - I didn&#039;t do this as I have lots open, but you can just type the same command into the terminal and it works fine:

export LD_LIBRARY_PATH=/usr/local/lib</description>
		<content:encoded><![CDATA[<p>FYI I had the same error as Tom:<br />
&gt;&gt;&gt; Config file /y/usr/etc/pcc.conf not found.<br />
Error: problem running command ‘bigloo’, exit status 1</p>
<p>I had added export LD_LIBRARY_PATH=/usr/local/lib to the profile, but I think it might require you to log out &amp; back in - I didn&#8217;t do this as I have lots open, but you can just type the same command into the terminal and it works fine:</p>
<p>export LD_LIBRARY_PATH=/usr/local/lib</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-74</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Sun, 01 Feb 2009 01:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-74</guid>
		<description>Decided to play around with these as compiling myself was proving more arduous than i had the patience for... but when I try to compile the test it can&#039;t find &quot;libphp-u_gtk3.0c.so&quot;</description>
		<content:encoded><![CDATA[<p>Decided to play around with these as compiling myself was proving more arduous than i had the patience for&#8230; but when I try to compile the test it can&#8217;t find &#8220;libphp-u_gtk3.0c.so&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-58</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 11 Sep 2008 23:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-58</guid>
		<description>@Antony: Try using &quot;sudo dpkg --install the_file.deb&quot;.</description>
		<content:encoded><![CDATA[<p>@Antony: Try using &#8220;sudo dpkg --install the_file.deb&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antony</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-57</link>
		<dc:creator>Antony</dc:creator>
		<pubDate>Thu, 11 Sep 2008 08:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-57</guid>
		<description>I&#039;m having problems installing. Firstly - double clicked on the packages and they said they werent valid Archives.

Now trying sudo -i dkpg or whatever it is and its asking for a password?

TIA

A</description>
		<content:encoded><![CDATA[<p>I&#8217;m having problems installing. Firstly - double clicked on the packages and they said they werent valid Archives.</p>
<p>Now trying sudo -i dkpg or whatever it is and its asking for a password?</p>
<p>TIA</p>
<p>A</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-50</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Fri, 05 Sep 2008 19:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-50</guid>
		<description>Confirmed, it&#039;s not amd64 compatible. I&#039;ll compile an amd64 version when I get more time. The compile needs things like bigloo that aren&#039;t in the current Lenny repository.</description>
		<content:encoded><![CDATA[<p>Confirmed, it&#8217;s not amd64 compatible. I&#8217;ll compile an amd64 version when I get more time. The compile needs things like bigloo that aren&#8217;t in the current Lenny repository.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-49</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Fri, 05 Sep 2008 18:58:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-49</guid>
		<description>Apparently this is not amd64 compatible installation?
Seems it&#039;s baring on library something.</description>
		<content:encoded><![CDATA[<p>Apparently this is not amd64 compatible installation?<br />
Seems it&#8217;s baring on library something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.compdigitec.com/labs/2008/07/24/install-roadsend-php-compiler-on-ubuntu-without-compiling-anything/comment-page-1/#comment-48</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 05 Sep 2008 18:54:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.compdigitec.com/labs/?p=12#comment-48</guid>
		<description>@Tom: Yes, we do. See http://www.compdigitec.com/forums/ for free support.

By the way, I think that your error is caused by you not installing bigloo-compdigitec-unoffical, because the error suggests that Bigloo 3.0c is not installed.</description>
		<content:encoded><![CDATA[<p>@Tom: Yes, we do. See <a href="http://www.compdigitec.com/forums/" rel="nofollow">http://www.compdigitec.com/forums/</a> for free support.</p>
<p>By the way, I think that your error is caused by you not installing bigloo-compdigitec-unoffical, because the error suggests that Bigloo 3.0c is not installed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

