Topic: Verbose build

Hi

I am cross compiling wolfSSL embedded SSL and getting the following error while creating libwolfssl.la

crti.o: No such file: No such file or directory

I am unable to figure out the issue because it does not show me the exact link command. Can someone please tell me how I could do a verbose build so that I can debug such issues?

If someone has any clues about the issue, suggestions are most welcome smile

Thanks
Rahul

Share

Re: Verbose build

Hi Rahul,

You should be able to do a verbose build by passing the --verbose option to gcc using C_EXTRA_FLAGS during the ./configure step.  Like so:

./configure C_EXTRA_FLAGS="--verbose"

crti.o: No such file: No such file or directory

This looks like an error coming from somewhere else besides wolfSSL.  wolfSSL doesn't have a file called crti.c.  A quick Google search looked like it was related to building gcc itself.

Best Regards,
Chris

Re: Verbose build

You can also pass V=1 to make itself, ie:

./configure
make V=1