* [Buildroot] Missing curl binary
@ 2023-02-17 15:52 Sourabh Hegde
2023-02-18 10:28 ` Sourabh Hegde
2023-02-18 11:18 ` Thomas Petazzoni via buildroot
0 siblings, 2 replies; 4+ messages in thread
From: Sourabh Hegde @ 2023-02-17 15:52 UTC (permalink / raw)
To: buildroot
[-- Attachment #1.1: Type: text/plain, Size: 292 bytes --]
Hello,
I am trying to include curl binary in my image. I have
selected BR2_PACKAGE_LIBCURL=y , BR2_PACKAGE_LIBCURL_CURL=y in the Config.
But still the curl binary is not installed in the target. Can anyone please
let me know what is the issue here and how to resolve it?
Thank you,
Sourabh
[-- Attachment #1.2: Type: text/html, Size: 378 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] Missing curl binary
2023-02-17 15:52 [Buildroot] Missing curl binary Sourabh Hegde
@ 2023-02-18 10:28 ` Sourabh Hegde
2023-02-18 11:18 ` Thomas Petazzoni via buildroot
1 sibling, 0 replies; 4+ messages in thread
From: Sourabh Hegde @ 2023-02-18 10:28 UTC (permalink / raw)
To: buildroot
[-- Attachment #1.1: Type: text/plain, Size: 437 bytes --]
Can anyone please let me know how to resolve this?
On Fri, Feb 17, 2023, 16:52 Sourabh Hegde <hrsourabh011@gmail.com> wrote:
> Hello,
>
> I am trying to include curl binary in my image. I have
> selected BR2_PACKAGE_LIBCURL=y , BR2_PACKAGE_LIBCURL_CURL=y in the Config.
> But still the curl binary is not installed in the target. Can anyone please
> let me know what is the issue here and how to resolve it?
>
> Thank you,
> Sourabh
>
[-- Attachment #1.2: Type: text/html, Size: 769 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] Missing curl binary
2023-02-17 15:52 [Buildroot] Missing curl binary Sourabh Hegde
2023-02-18 10:28 ` Sourabh Hegde
@ 2023-02-18 11:18 ` Thomas Petazzoni via buildroot
2023-02-18 17:09 ` Sourabh Hegde
1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-02-18 11:18 UTC (permalink / raw)
To: Sourabh Hegde; +Cc: buildroot
On Fri, 17 Feb 2023 16:52:49 +0100
Sourabh Hegde <hrsourabh011@gmail.com> wrote:
> I am trying to include curl binary in my image. I have
> selected BR2_PACKAGE_LIBCURL=y , BR2_PACKAGE_LIBCURL_CURL=y in the Config.
> But still the curl binary is not installed in the target. Can anyone please
> let me know what is the issue here and how to resolve it?
I suppose you did a build with BR2_PACKAGE_LIBCURL=y, then after the
build completed you changed the configuration to enable
BR2_PACKAGE_LIBCURL_CURL=y and just ran "make". This doesn't work, as
the libcurl package is already built, and Buildroot is not smart enough
to detect that you changed something related to the libcurl
configuration.
Run: "make libcurl-dirclean all" to force rebuilding the libcurl
package (or do a full rebuild).
See https://buildroot.org/downloads/manual/manual.html#full-rebuild for
more details.
Best regards,
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] Missing curl binary
2023-02-18 11:18 ` Thomas Petazzoni via buildroot
@ 2023-02-18 17:09 ` Sourabh Hegde
0 siblings, 0 replies; 4+ messages in thread
From: Sourabh Hegde @ 2023-02-18 17:09 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: buildroot
[-- Attachment #1.1: Type: text/plain, Size: 1271 bytes --]
Hi Thomas,
Yes, that was the issue. Doing "make libcurl-dirclean all" fixed it.
Thanks for the support
On Sat, 18 Feb 2023 at 12:18, Thomas Petazzoni <thomas.petazzoni@bootlin.com>
wrote:
> On Fri, 17 Feb 2023 16:52:49 +0100
> Sourabh Hegde <hrsourabh011@gmail.com> wrote:
>
> > I am trying to include curl binary in my image. I have
> > selected BR2_PACKAGE_LIBCURL=y , BR2_PACKAGE_LIBCURL_CURL=y in the
> Config.
> > But still the curl binary is not installed in the target. Can anyone
> please
> > let me know what is the issue here and how to resolve it?
>
> I suppose you did a build with BR2_PACKAGE_LIBCURL=y, then after the
> build completed you changed the configuration to enable
> BR2_PACKAGE_LIBCURL_CURL=y and just ran "make". This doesn't work, as
> the libcurl package is already built, and Buildroot is not smart enough
> to detect that you changed something related to the libcurl
> configuration.
>
> Run: "make libcurl-dirclean all" to force rebuilding the libcurl
> package (or do a full rebuild).
>
> See https://buildroot.org/downloads/manual/manual.html#full-rebuild for
> more details.
>
> Best regards,
>
> Thomas
> --
> Thomas Petazzoni, co-owner and CEO, Bootlin
> Embedded Linux and Kernel engineering and training
> https://bootlin.com
>
[-- Attachment #1.2: Type: text/html, Size: 1982 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-02-18 17:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-17 15:52 [Buildroot] Missing curl binary Sourabh Hegde
2023-02-18 10:28 ` Sourabh Hegde
2023-02-18 11:18 ` Thomas Petazzoni via buildroot
2023-02-18 17:09 ` Sourabh Hegde
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox