2014-09-23 14:11 GMT+02:00 Damien Cassou <damien.cassou@gmail.com>:
On Mon, Sep 22, 2014 at 11:10 PM, Nicolai Hess <nicolaihess@web.de> wrote:
Did anything changed in the pharovm-linux-build-setup ?
if you want a clean system where the pharo VM depends on libraries on your system and not on things downloaded at compile time, you can use these sources: http://files.pharo.org/vm/src/vm-unix-sources/blessed.
-- Damien Cassou http://damiencassou.seasidehosting.st
"Success is the ability to go from one failure to another without losing enthusiasm." Winston Churchill
Ah this one works (changing some paths in directories.cmake). How it comes, this one does not have the libgit2 and libssh2 as dependencies entries in the CMakeLists.txt file? My CMakeLists.txt has these entries: add_subdirectory("thirdParty/libssh2") set(libssh2_LIB "${externalModulesDir}/libssh2.so.1.0.1") add_library("${libssh2_LIB}" SHARED IMPORTED GLOBAL) set_target_properties("${libssh2_LIB}" PROPERTIES IMPORTED_LOCATION "${libssh2_LIB}") add_dependencies("${libssh2_LIB}" "libssh2") add_dependencies(pharo libssh2) add_subdirectory("thirdParty/libgit2") set(libgit2_LIB "${externalModulesDir}/libgit2.so.0.20.0") add_library("${libgit2_LIB}" SHARED IMPORTED GLOBAL) set_target_properties("${libgit2_LIB}" PROPERTIES IMPORTED_LOCATION "${libgit2_LIB}") add_dependencies("${libgit2_LIB}" "libgit2") add_dependencies(pharo libgit2) by the way this pharovmbuild buildUnix32 has changed ( https://github.com/pharo-project/pharo-vm/commit/d0ce32de77f16a67b8df13a3ab1... ) I think my last successful linux build was 6 month ago :) But I don't see why it does not work on my machine whereas it seems to work on the build slave.