* [Buildroot] Using openssl functions in another package
@ 2015-11-20 19:35 David Van Arnem
2015-11-20 22:06 ` Arnout Vandecappelle
0 siblings, 1 reply; 2+ messages in thread
From: David Van Arnem @ 2015-11-20 19:35 UTC (permalink / raw)
To: buildroot
Hi all,
I have a custom package (source in C) that uses some of OpenSSL's SHA
functions to perform hashing. I can build successfully outside of the
buildroot tree by both including the SHA header file in the C source with:
#include <openssl/sha.h>
and then adding the crypto library in the CC command:
$(CC) -lcrypto -o prog prog.c
However, when I try to build the package in buildroot, using the same CC
command in the Makefile, I get the following error:
prog.c: fatal error: openssl/sha.h: No such file or directory
I have enabled the openssl package in my buildroot configuration, and
set up my custom package's Config.in to depend on it:
depends on BR2_PACKAGE_OPENSSL
My target is a MicroBlaze (little endian, single core) processor. What
else might I need to do to use the OpenSSL SHA functions correctly and
avoid this error?
--
Thanks,
David
^ permalink raw reply [flat|nested] 2+ messages in thread
* [Buildroot] Using openssl functions in another package
2015-11-20 19:35 [Buildroot] Using openssl functions in another package David Van Arnem
@ 2015-11-20 22:06 ` Arnout Vandecappelle
0 siblings, 0 replies; 2+ messages in thread
From: Arnout Vandecappelle @ 2015-11-20 22:06 UTC (permalink / raw)
To: buildroot
On 20-11-15 20:35, David Van Arnem wrote:
> Hi all,
>
> I have a custom package (source in C) that uses some of OpenSSL's SHA functions
> to perform hashing. I can build successfully outside of the buildroot tree by
> both including the SHA header file in the C source with:
>
> #include <openssl/sha.h>
>
> and then adding the crypto library in the CC command:
>
> $(CC) -lcrypto -o prog prog.c
In general, instead of explicitly passing -lcrypto it is better to use
pkg-config to get the flags:
$(CC) `pkg-config --cflags libcrypto --libs libcrypto` -o prog prog.c
>
> However, when I try to build the package in buildroot, using the same CC command
> in the Makefile, I get the following error:
>
> prog.c: fatal error: openssl/sha.h: No such file or directory
>
> I have enabled the openssl package in my buildroot configuration, and set up my
> custom package's Config.in to depend on it:
>
> depends on BR2_PACKAGE_OPENSSL
Did you also add a dependency on openssl in the package.mk file? Do you pass
the correct CC in the package.mk file? Is the header properly installed in
output/staging/usr/include/openssl?
Regards,
Arnout
>
> My target is a MicroBlaze (little endian, single core) processor. What else
> might I need to do to use the OpenSSL SHA functions correctly and avoid this error?
>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-11-20 22:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-20 19:35 [Buildroot] Using openssl functions in another package David Van Arnem
2015-11-20 22:06 ` Arnout Vandecappelle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox