In the unmodified directory: $ make clean $ make 2>&1 | tee /tmp/openssl-working-build.log
In the modified directory: $ make clean $ make 2>&1 | tee /tmp/openssl-broken-build.log $ diff /tmp/openssl-working-build.log /tmp/openssl-broken-build.log | ${PAGER:more} Take note of the differences in output, and use that to determine what broke. (the '2>&1' syntax redirects stderr to stdout, which is very useful when you need to capture why something is failing.) Good luck. -Kyle H On Mon, Jun 10, 2019, 03:34 Giovanni Fontana <giovanni.fontan...@gmail.com> wrote: > The unmodified version works. As I said, it's sure the issue is on what I > added, but info from the building logs is not sufficient to figure out what > is the issue there. So as result of the building I have just: > > - libcrypto.a > - libssl.a > - libcrypto.map > > > so what is missing are the following files: > > - libssl.map > - libcrypto.so > - libssl.so > > > Il giorno dom 9 giu 2019 alle ore 19:30 Kyle Hamilton <aerow...@gmail.com> > ha scritto: > >> Can you try building an unmodified version of the tarball, and see if it >> has a problem? >> >> -Kyle >> >> On Sun, Jun 9, 2019, 07:31 Giovanni Fontana <giovanni.fontan...@gmail.com> >> wrote: >> >>> Hello Kurt, >>> >>> >>> - it's perl 5, version 26, subversion 1 (v5.26.1) built for >>> x86_64-linux-gnu-thread-multi >>> - ldd (Ubuntu GLIBC 2.27-3ubuntu1) 2.27 >>> >>> >>> I guess is something from what I added since the original OPENSSL I'm >>> able to build, as well as other intermediate modifications. My issue is >>> it looks like the log doesn't give so much info and also the *make >>> update* doesn't complete his task. >>> >>> BR >>> Giovanni >>> >>> Il giorno sab 8 giu 2019 alle ore 18:07 Kurt Roeckx <k...@roeckx.be> ha >>> scritto: >>> >>>> On Sat, Jun 08, 2019 at 12:26:30AM +0200, Giovanni Fontana wrote: >>>> > */usr/bin/ld:libcrypto.map:0: syntax error in VERSION scriptcollect2: >>>> >>>> There seems to be a problem generating the libcrypto.map file for >>>> you. What does the file look like? Which perl version are you >>>> using? Which libc do you use? >>>> >>>> >>>> Kurt >>>> >>>>