* [Buildroot] [PATCH 1/1] perl: update config.{sub, guess} using autotools hook
@ 2016-10-25 21:21 Erico Nunes
2016-10-25 21:36 ` Thomas Petazzoni
2016-10-26 20:34 ` Thomas Petazzoni
0 siblings, 2 replies; 4+ messages in thread
From: Erico Nunes @ 2016-10-25 21:21 UTC (permalink / raw)
To: buildroot
perl may fail to build on newer host architectures such as aarch64 due
to its inability to guess the host architecture to build 'miniperl',
which is built during the process. An error message looks like this:
Configuring build-time miniperl for unknown
ERROR: No $target defined (?!)
ERROR: configure --mode=buildmini failed
This happens because the config.sub and config.guess files from perl are
not modified and may become outdated.
These files are normally updated automatically by a Buildroot hook for
autotools packages, to avoid problems like these.
Although perl uses the config.sub and config.guess files, it is not a
strict autotools package, so it is not defined as an "autotools-package"
in Buildroot and so it doesn't inherit the hook.
This commit makes perl borrow the hook from the autotools infrastructure
so that it can build on newer build architectures.
This has been tested by building it on an aarch64 host machine.
Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
---
package/perl/perl.mk | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/package/perl/perl.mk b/package/perl/perl.mk
index 29b4455..a8768b2 100644
--- a/package/perl/perl.mk
+++ b/package/perl/perl.mk
@@ -33,6 +33,12 @@ define PERL_CROSS_EXTRACT
endef
PERL_POST_EXTRACT_HOOKS += PERL_CROSS_EXTRACT
+# Even though perl is not an autotools-package, it uses config.sub and
+# config.guess. Up-to-date versions of these files may be needed to build perl
+# on newer host architectures, so we borrow the hook which updates them from the
+# autotools infrastructure.
+PERL_POST_PATCH_HOOKS += UPDATE_CONFIG_HOOK
+
define PERL_CROSS_SET_POD
$(SED) s/$(PERL_CROSS_OLD_POD)/$(PERL_CROSS_NEW_POD)/g $(@D)/Makefile
endef
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] perl: update config.{sub, guess} using autotools hook
2016-10-25 21:21 [Buildroot] [PATCH 1/1] perl: update config.{sub, guess} using autotools hook Erico Nunes
@ 2016-10-25 21:36 ` Thomas Petazzoni
2016-10-26 8:00 ` François Perrad
2016-10-26 20:34 ` Thomas Petazzoni
1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2016-10-25 21:36 UTC (permalink / raw)
To: buildroot
Hello,
On Tue, 25 Oct 2016 23:21:09 +0200, Erico Nunes wrote:
> perl may fail to build on newer host architectures such as aarch64 due
> to its inability to guess the host architecture to build 'miniperl',
> which is built during the process. An error message looks like this:
>
> Configuring build-time miniperl for unknown
> ERROR: No $target defined (?!)
> ERROR: configure --mode=buildmini failed
>
> This happens because the config.sub and config.guess files from perl are
> not modified and may become outdated.
> These files are normally updated automatically by a Buildroot hook for
> autotools packages, to avoid problems like these.
> Although perl uses the config.sub and config.guess files, it is not a
> strict autotools package, so it is not defined as an "autotools-package"
> in Buildroot and so it doesn't inherit the hook.
> This commit makes perl borrow the hook from the autotools infrastructure
> so that it can build on newer build architectures.
> This has been tested by building it on an aarch64 host machine.
>
> Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
Please use the get-developers script when sending patches, so that the
appropriate developers are CC'ed. In this case, Fran?ois should have
been CC'ed.
Fran?ois, can you have a look at Erico's patch? See
https://patchwork.ozlabs.org/patch/686713/.
Thanks,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] perl: update config.{sub, guess} using autotools hook
2016-10-25 21:36 ` Thomas Petazzoni
@ 2016-10-26 8:00 ` François Perrad
0 siblings, 0 replies; 4+ messages in thread
From: François Perrad @ 2016-10-26 8:00 UTC (permalink / raw)
To: buildroot
2016-10-25 23:36 GMT+02:00 Thomas Petazzoni
<thomas.petazzoni@free-electrons.com>:
> Hello,
>
> On Tue, 25 Oct 2016 23:21:09 +0200, Erico Nunes wrote:
>> perl may fail to build on newer host architectures such as aarch64 due
>> to its inability to guess the host architecture to build 'miniperl',
>> which is built during the process. An error message looks like this:
>>
>> Configuring build-time miniperl for unknown
>> ERROR: No $target defined (?!)
>> ERROR: configure --mode=buildmini failed
>>
>> This happens because the config.sub and config.guess files from perl are
>> not modified and may become outdated.
>> These files are normally updated automatically by a Buildroot hook for
>> autotools packages, to avoid problems like these.
>> Although perl uses the config.sub and config.guess files, it is not a
>> strict autotools package, so it is not defined as an "autotools-package"
>> in Buildroot and so it doesn't inherit the hook.
>> This commit makes perl borrow the hook from the autotools infrastructure
>> so that it can build on newer build architectures.
>> This has been tested by building it on an aarch64 host machine.
>>
>> Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
>
> Please use the get-developers script when sending patches, so that the
> appropriate developers are CC'ed. In this case, Fran?ois should have
> been CC'ed.
>
> Fran?ois, can you have a look at Erico's patch? See
> https://patchwork.ozlabs.org/patch/686713/.
>
This hook updates `cnf/config.sub` and `cnf/config.guess`, 2 files
which come from perl-cross (not from perl).
So, the title of the patch could be improved by :
[1/1] perl: update cnf/config.{sub, guess} using autotools hook
Acked-by: Francois Perrad <francois.perrad@gadz.org>
Fran?ois
> Thanks,
>
> Thomas
> --
> Thomas Petazzoni, CTO, Free Electrons
> Embedded Linux and Kernel engineering
> http://free-electrons.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] perl: update config.{sub, guess} using autotools hook
2016-10-25 21:21 [Buildroot] [PATCH 1/1] perl: update config.{sub, guess} using autotools hook Erico Nunes
2016-10-25 21:36 ` Thomas Petazzoni
@ 2016-10-26 20:34 ` Thomas Petazzoni
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-10-26 20:34 UTC (permalink / raw)
To: buildroot
Hello,
On Tue, 25 Oct 2016 23:21:09 +0200, Erico Nunes wrote:
> perl may fail to build on newer host architectures such as aarch64 due
> to its inability to guess the host architecture to build 'miniperl',
> which is built during the process. An error message looks like this:
>
> Configuring build-time miniperl for unknown
> ERROR: No $target defined (?!)
> ERROR: configure --mode=buildmini failed
>
> This happens because the config.sub and config.guess files from perl are
> not modified and may become outdated.
> These files are normally updated automatically by a Buildroot hook for
> autotools packages, to avoid problems like these.
> Although perl uses the config.sub and config.guess files, it is not a
> strict autotools package, so it is not defined as an "autotools-package"
> in Buildroot and so it doesn't inherit the hook.
> This commit makes perl borrow the hook from the autotools infrastructure
> so that it can build on newer build architectures.
> This has been tested by building it on an aarch64 host machine.
>
> Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
> ---
> package/perl/perl.mk | 6 ++++++
> 1 file changed, 6 insertions(+)
Applied to master after fixing the commit title, as suggested by
Fran?ois.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-10-26 20:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-25 21:21 [Buildroot] [PATCH 1/1] perl: update config.{sub, guess} using autotools hook Erico Nunes
2016-10-25 21:36 ` Thomas Petazzoni
2016-10-26 8:00 ` François Perrad
2016-10-26 20:34 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox