Hi Angelos and Bas, from what I can see in the log your have provided, there is an issue with compiling and linking the test C program when checking for GetAvailabletApplication from this line: [1].
The important section within the log are these ones: /usr/bin/ld: /tmp/ccnIzndw.o: relocation R_X86_64_32 against `.rodata._ZNK3itk10Statistics37MersenneTwisterRandomVariateGenerator14GetNameOfClassEv.str1.8' can not be used when making a PIE object; recompile with -fPIC /usr/bin/ld: final link failed: Nonrepresentable section on output collect2: error: ld returned 1 exit status So there should be two solutions: 1. defining LDFLAGS few lines before to add the « -fPIC » option which seem to be required (cf. [2]) this way the test should succeed 2. comment both lines 1030 and 1031 to remove the test I hope this helps. In case, the first option works for you, please let me know and I will commit this modification on the SVN. Best regards, [1] http://www.zoo-project.org/trac/browser/trunk/zoo-project/zoo-kernel/configure.ac#L1030 [2] https://www.gnu.org/software/autoconf/manual/autoconf-2.67/html_node/Running-the-Linker.html Gerald Fenoy [email protected] GEOLABS Siège social : Futur Building I 1280, avenue des Platanes 34970 Lattes Tél. fixe : +33 (0) 4 67 43 09 95 Tél. portable : +33 (0) 6 70 08 25 39 > Le 23 juil. 2019 à 13:10, Angelos Tzotsos <[email protected]> a écrit : > > Thank you Bas, > > This is what I got from a test build on Launchpad: > https://launchpad.net/~gcpp-kalxas/+archive/ubuntu/osgeolive/+sourcepub/10360913/+listing-archive-extra > > Regards, > Angelos > > > On 7/22/19 8:39 PM, Sebastiaan Couwenberg wrote: >> How far did you come with the patches? >> >> I just pushed a change to disable all patches that don't apply, and drop >> the ones that have been applied upstream. >> >> That's should allow the build to start at least, to see which ones need >> to be updated because the issue has not been fixed upstream. >> >> Kind Regards, >> >> Bas >> > > > -- > Angelos Tzotsos, PhD > Charter Member > Open Source Geospatial Foundation > http://users.ntua.gr/tzotsos >
