Build log for ROX-Filer-2.6
Built using 0compile-0.8
Build system: Linux, home, 2.6.17-10-generic, #2 SMP Fri Oct 13 18:45:35 UTC 2006, i686
0compile-env.xml:
<build-environment interface="http://rox.sourceforge.net/2005/interfaces/ROX-Filer" xmlns="http://zero-install.sourceforge.net/2006/namespaces/0compile">
<interface uri="http://0install.net/2006/interfaces/GLib-dev">
<implementation id="user-content-sha1=1662d6e85a0fcb518942a1d5e29e05537dbe7733" version="2.4.8.1">
</implementation></interface>
<interface uri="http://0install.net/2006/interfaces/GTK-dev">
<implementation id="user-content-sha1=1ea02e0ff9ee9eae327d64803846b38904ab9a23" version="2.4.14.1">
</implementation></interface>
<interface uri="http://0install.net/2006/interfaces/GTK-2.4.xml">
<implementation id="user-content-sha1=994d703b1faede1bfa2e97f063b80c15016c114c" version="0.3">
<requires interface="http://0install.net/2006/interfaces/GLibmm-dev.xml">
<environment insert="lib/pkgconfig" name="PKG_CONFIG_PATH">
</environment></requires>
<requires interface="http://0install.net/2006/interfaces/Pango-dev">
<environment insert="lib/pkgconfig" name="PKG_CONFIG_PATH">
</environment></requires>
<requires interface="http://0install.net/2006/interfaces/GLib-dev">
<environment insert="lib/pkgconfig" name="PKG_CONFIG_PATH">
</environment></requires>
<requires interface="http://0install.net/2006/interfaces/ATK-dev">
<environment insert="lib/pkgconfig" name="PKG_CONFIG_PATH">
</environment></requires>
<requires interface="http://0install.net/2006/interfaces/GTK-dev">
<environment insert="lib/pkgconfig" name="PKG_CONFIG_PATH">
</environment></requires>
<requires interface="http://0install.net/2006/interfaces/GTKmm-dev.xml">
<environment insert="lib/pkgconfig" name="PKG_CONFIG_PATH">
</environment></requires>
</implementation>
</interface>
<interface uri="http://0install.net/2006/interfaces/GTKmm-dev.xml">
<implementation id="user-content-sha1=02b1ddcdcc54cff44bc48951249609df5d0afe9f" version="2.4.11">
</implementation></interface>
<interface uri="http://0install.net/2006/interfaces/Pango-dev">
<implementation id="user-content-sha1=260687eb207dc87811043d35570fb3779071a575" version="1.4.1.2">
</implementation></interface>
<interface uri="http://0install.net/2006/interfaces/GLibmm-dev.xml">
<implementation id="user-content-sha1=715adfd8066b8c520c11bc924e3dcad29acf9edb" version="2.4.8">
</implementation></interface>
<interface uri="http://0install.net/2006/interfaces/ATK-dev">
<implementation id="user-content-sha1=4ccf2ed4da6ec5052de7ca4b548e36bd7fc16be4" version="1.8.0.1">
</implementation></interface>
<interface uri="http://rox.sourceforge.net/2005/interfaces/ROX-Filer">
<implementation binary-main="ROX-Filer/AppRun" command=""$SRCDIR/ROX-Filer/src/build"" from-feed="http://rox.sourceforge.net/2007/interfaces/ROX-Filer-src.xml" id="user-content-sha1new=efb297147dcc09b4914440dcbab275e587c3c7ef" version="2.6">
<requires interface="http://0install.net/2006/interfaces/GTK-2.4.xml">
<environment insert="" name="GTK24_HOME">
</environment></requires>
</implementation>
</interface>
</build-environment>
Executing: "$SRCDIR/ROX-Filer/src/build"
[: 12: ==: unexpected operator
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: no acceptable C compiler found in $PATH
See config.log' for more details.
pkg-config reports GTK version is now 2.4.14
Note: library 'atkmm-1.6' with major version 1 not found!
Note: library 'pangomm-1.4' with major version 1 not found!
Note: library 'glibmm_generate_extra_defs-2.4' with major version 1 not found!
Note: library 'gtkmm-2.4' with major version 1 not found!
Note: library 'glibmm-2.4' with major version 1 not found!
Note: library 'gdkmm-2.4' with major version 1 not found!
Exiting GTK 2.4 environment
pkg-config reports GTK version is now 2.4.14
Note: library 'atkmm-1.6' with major version 1 not found!
Note: library 'pangomm-1.4' with major version 1 not found!
Note: library 'glibmm_generate_extra_defs-2.4' with major version 1 not found!
Note: library 'gtkmm-2.4' with major version 1 not found!
Note: library 'glibmm-2.4' with major version 1 not found!
Note: library 'gdkmm-2.4' with major version 1 not found!
Exiting GTK 2.4 environment
rm: невозможно удалить/usr/src/ROX-All-1.1/ROX-Filer1/rox-filer-2.6/ROX-Filer/ROX-Filer.dbg': No such file or directory
Build failed with exit code 1
Anonymous
Logged In: YES
user_id=40461
Originator: NO
It didn't create the debugging symbols file (using "objcopy --only-keep-debug"), and then failed when it tried to delete them. This shouldn't be a fatal error: I've fixed it now in svn:
--- build (revision 4986)
+++ build (revision 4987)
@@ -23,5 +23,5 @@
(cd "$SRCDIR/ROX-Filer" && cp -ru .DirIcon Help images Messages ROX AppInfo.xml AppRun Options.xml style.css subclasses "$DISTDIR/ROX-Filer") || exit 1
find "$DISTDIR" -name '.svn' -type d |xargs rm -rf
-# Remove debugging symbols
-rm "$DISTDIR/ROX-Filer/ROX-Filer.dbg"
+# Remove debugging symbols, if any
+rm -f "$DISTDIR/ROX-Filer/ROX-Filer.dbg"