* [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language.
@ 2015-04-07 19:10 Patrick Noffke
2015-04-08 14:40 ` Jeremy Rosen
2015-07-20 21:39 ` Thomas Petazzoni
0 siblings, 2 replies; 7+ messages in thread
From: Patrick Noffke @ 2015-04-07 19:10 UTC (permalink / raw)
To: buildroot
A non-text attachment was scrubbed...
Name: 0001-Toolchain-Add-option-to-enable-Ada-language.patch
Type: text/x-patch
Size: 2641 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20150407/ba877eae/attachment.bin>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language.
2015-04-07 19:10 [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language Patrick Noffke
@ 2015-04-08 14:40 ` Jeremy Rosen
2015-04-08 15:51 ` Patrick Noffke
2015-07-20 21:39 ` Thomas Petazzoni
1 sibling, 1 reply; 7+ messages in thread
From: Jeremy Rosen @ 2015-04-08 14:40 UTC (permalink / raw)
To: buildroot
hello
please resend your patch as an inline patch... ideally using git send-email
moreover, from a quick review, you seem to have a commented line/section in your patch, please remove it so the patch is cleaner...
Cordialement
J?r?my Rosen
+33 (0)1 42 68 28 04
fight key loggers : write some perl using vim
Open Wide Ingenierie
23, rue Daviel
75013 Paris - France
www.openwide.fr
----- Mail original -----
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language.
2015-04-08 14:40 ` Jeremy Rosen
@ 2015-04-08 15:51 ` Patrick Noffke
2015-04-08 15:55 ` Patrick Noffke
0 siblings, 1 reply; 7+ messages in thread
From: Patrick Noffke @ 2015-04-08 15:51 UTC (permalink / raw)
To: buildroot
On Wednesday, April 08, 2015 04:40:46 PM Jeremy Rosen wrote:
> please resend your patch as an inline patch... ideally using git
> send-email
>
I will send the patch separately using git send-email. I have to send from another PC.
> moreover, from a quick review, you seem to have a commented
> line/section in your patch, please remove it so the patch is
> cleaner...
>
The comments are nearby lines in the source file. I did not add them. I generated the patch following the buildroot manual, specifically using:
$ git format-patch -M -n -s -o outgoing origin/master
Please let me know if I'm doing something wrong -- this is my first patch to buildroot.
Thanks,
Patrick
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language.
2015-04-08 15:51 ` Patrick Noffke
@ 2015-04-08 15:55 ` Patrick Noffke
0 siblings, 0 replies; 7+ messages in thread
From: Patrick Noffke @ 2015-04-08 15:55 UTC (permalink / raw)
To: buildroot
On Wednesday, April 08, 2015 10:51:48 AM Patrick Noffke wrote:
> The comments are nearby lines in the source file. I did not add them.
> I generated the patch following the buildroot manual, specifically
> using:
>
Sorry, I see the comment now. I'll remove it. Thanks.
Patrick
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language.
2015-04-07 19:10 [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language Patrick Noffke
2015-04-08 14:40 ` Jeremy Rosen
@ 2015-07-20 21:39 ` Thomas Petazzoni
2015-07-21 17:41 ` Patrick Noffke
1 sibling, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2015-07-20 21:39 UTC (permalink / raw)
To: buildroot
Dear Patrick Noffke,
Sorry for the long response time. However, unless I missed it, you
never resent your patch with git send-email. Can you do this? Also, see
some comments below.
On Tue, 07 Apr 2015 14:10:28 -0500, Patrick Noffke wrote:
> From d429cdacd2584e561c754bc7d7cf0eb78d7c03f0 Mon Sep 17 00:00:00 2001
> From: Patrick Noffke <patrick@noffke.me>
> Date: Tue, 7 Apr 2015 09:04:45 -0500
> Subject: [PATCH 1/1] Toolchain - Add option to enable Ada language.
>
> Signed-off-by: Patrick Noffke <patrick@noffke.me>
> ---
> package/gcc/Config.in.host | 10 ++++++++++
> package/gcc/gcc-final/gcc-final.mk | 9 +++++++++
> toolchain/toolchain-common.in | 3 +++
> 3 files changed, 22 insertions(+)
>
> diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
> index cf96c73..be55b4f 100644
> --- a/package/gcc/Config.in.host
> +++ b/package/gcc/Config.in.host
> @@ -108,6 +108,16 @@ config BR2_TOOLCHAIN_BUILDROOT_CXX
> C++ language and you want C++ libraries to be installed on
> your target system.
>
> +config BR2_TOOLCHAIN_BUILDROOT_ADA
> + bool "Enable Ada support"
> + select BR2_INSTALL_LIBADA
Technically speaking, this hidden boolean will only become necessary
when some packages will need Ada support. We've recently added Fortran
support, without a similar boolean. I guess we'll have to add it only
when some packages will start using Fortran support.
> + depends on !(BR2_GCC_VERSION_4_2_2_AVR32_2_1_5 && \
This gcc version has since then been remove.
> + BR2_TOOLCHAIN_BUILDROOT_LOCALE)
So a toolchain with locale support cannot have Ada support? This seems
weird, can you add a comment that explains why?
> + help
> + Enable this option if you want your toolchain to support the
> + Ada language and you want Ada libraries to be installed on
> + your target system.
> +
> config BR2_GCC_ENABLE_TLS
> bool "Enable compiler tls support" if BR2_TOOLCHAIN_BUILDROOT_UCLIBC
> default y
> diff --git a/package/gcc/gcc-final/gcc-final.mk b/package/gcc/gcc-final/gcc-final.mk
> index d76eb31..7defb97 100644
> --- a/package/gcc/gcc-final/gcc-final.mk
> +++ b/package/gcc/gcc-final/gcc-final.mk
> @@ -44,6 +44,7 @@ endef
> # Languages supported by the cross-compiler
> GCC_FINAL_CROSS_LANGUAGES-y = c
> GCC_FINAL_CROSS_LANGUAGES-$(BR2_INSTALL_LIBSTDCPP) += c++
> +GCC_FINAL_CROSS_LANGUAGES-$(BR2_INSTALL_LIBADA) += ada
> GCC_FINAL_CROSS_LANGUAGES = $(subst $(space),$(comma),$(GCC_FINAL_CROSS_LANGUAGES-y))
>
> HOST_GCC_FINAL_CONF_OPTS = \
> @@ -65,6 +66,10 @@ else
> HOST_GCC_FINAL_CONF_OPTS += --disable-libgomp
> endif
>
> +ifeq ($(BR2_INSTALL_LIBADA),y)
> +HOST_GCC_FINAL_CONF_OPTS += --enable-libada
> +endif
> +
> # End with user-provided options, so that they can override previously
> # defined options.
> HOST_GCC_FINAL_CONF_OPTS += \
> @@ -125,6 +130,10 @@ ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
> HOST_GCC_FINAL_USR_LIBS += libstdc++
> endif
>
> +ifeq ($(BR2_INSTALL_LIBADA),y)
> +#HOST_GCC_FINAL_USR_LIBS += libgnat
> +endif
This is commented out, why? If you need some library on the target to
run Ada programs, you indeed need to add something to
HOST_GCC_FINAL_USR_LIBS.
Also, if I understood correctly, building the Ada support in gcc
requires having an already working Ada compiler on your machine. Is
this correct? If it is, then support/dependencies/dependencies.sh need
to be adjusted to also check for an Ada compiler when Ada support is
selected in the toolchain.
Could you work on these issues and submit an updated version of your
patch? In the mean time, I'll mark your patch as "Changes Requested" in
our patch tracking system.
Thanks a lot!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language.
2015-07-20 21:39 ` Thomas Petazzoni
@ 2015-07-21 17:41 ` Patrick Noffke
2015-07-21 19:52 ` Thomas Petazzoni
0 siblings, 1 reply; 7+ messages in thread
From: Patrick Noffke @ 2015-07-21 17:41 UTC (permalink / raw)
To: buildroot
Hi Thomas,
On 07/20/2015 04:39 PM, Thomas Petazzoni wrote:
> Dear Patrick Noffke,
>
> Sorry for the long response time. However, unless I missed it, you
> never resent your patch with git send-email. Can you do this? Also, see
> some comments below.
I did resend it from another PC on 08 April 2015 at 11:05 a.m. my time.
But it did not address all of your below comments. I will resend again.
>
> On Tue, 07 Apr 2015 14:10:28 -0500, Patrick Noffke wrote:
>> From d429cdacd2584e561c754bc7d7cf0eb78d7c03f0 Mon Sep 17 00:00:00 2001
>> From: Patrick Noffke <patrick@noffke.me>
>> Date: Tue, 7 Apr 2015 09:04:45 -0500
>> Subject: [PATCH 1/1] Toolchain - Add option to enable Ada language.
>>
>> Signed-off-by: Patrick Noffke <patrick@noffke.me>
>> ---
>> package/gcc/Config.in.host | 10 ++++++++++
>> package/gcc/gcc-final/gcc-final.mk | 9 +++++++++
>> toolchain/toolchain-common.in | 3 +++
>> 3 files changed, 22 insertions(+)
>>
>> diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
>> index cf96c73..be55b4f 100644
>> --- a/package/gcc/Config.in.host
>> +++ b/package/gcc/Config.in.host
>> @@ -108,6 +108,16 @@ config BR2_TOOLCHAIN_BUILDROOT_CXX
>> C++ language and you want C++ libraries to be installed on
>> your target system.
>>
>> +config BR2_TOOLCHAIN_BUILDROOT_ADA
>> + bool "Enable Ada support"
>> + select BR2_INSTALL_LIBADA
> Technically speaking, this hidden boolean will only become necessary
> when some packages will need Ada support. We've recently added Fortran
> support, without a similar boolean. I guess we'll have to add it only
> when some packages will start using Fortran support.
>
>> + depends on !(BR2_GCC_VERSION_4_2_2_AVR32_2_1_5 && \
> This gcc version has since then been remove.
>
>> + BR2_TOOLCHAIN_BUILDROOT_LOCALE)
> So a toolchain with locale support cannot have Ada support? This seems
> weird, can you add a comment that explains why?
>
>> + help
>> + Enable this option if you want your toolchain to support the
>> + Ada language and you want Ada libraries to be installed on
>> + your target system.
>> +
>> config BR2_GCC_ENABLE_TLS
>> bool "Enable compiler tls support" if BR2_TOOLCHAIN_BUILDROOT_UCLIBC
>> default y
>> diff --git a/package/gcc/gcc-final/gcc-final.mk b/package/gcc/gcc-final/gcc-final.mk
>> index d76eb31..7defb97 100644
>> --- a/package/gcc/gcc-final/gcc-final.mk
>> +++ b/package/gcc/gcc-final/gcc-final.mk
>> @@ -44,6 +44,7 @@ endef
>> # Languages supported by the cross-compiler
>> GCC_FINAL_CROSS_LANGUAGES-y = c
>> GCC_FINAL_CROSS_LANGUAGES-$(BR2_INSTALL_LIBSTDCPP) += c++
>> +GCC_FINAL_CROSS_LANGUAGES-$(BR2_INSTALL_LIBADA) += ada
>> GCC_FINAL_CROSS_LANGUAGES = $(subst $(space),$(comma),$(GCC_FINAL_CROSS_LANGUAGES-y))
>>
>> HOST_GCC_FINAL_CONF_OPTS = \
>> @@ -65,6 +66,10 @@ else
>> HOST_GCC_FINAL_CONF_OPTS += --disable-libgomp
>> endif
>>
>> +ifeq ($(BR2_INSTALL_LIBADA),y)
>> +HOST_GCC_FINAL_CONF_OPTS += --enable-libada
>> +endif
>> +
>> # End with user-provided options, so that they can override previously
>> # defined options.
>> HOST_GCC_FINAL_CONF_OPTS += \
>> @@ -125,6 +130,10 @@ ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
>> HOST_GCC_FINAL_USR_LIBS += libstdc++
>> endif
>>
>> +ifeq ($(BR2_INSTALL_LIBADA),y)
>> +#HOST_GCC_FINAL_USR_LIBS += libgnat
>> +endif
> This is commented out, why? If you need some library on the target to
> run Ada programs, you indeed need to add something to
> HOST_GCC_FINAL_USR_LIBS.
>
> Also, if I understood correctly, building the Ada support in gcc
> requires having an already working Ada compiler on your machine. Is
> this correct? If it is, then support/dependencies/dependencies.sh need
> to be adjusted to also check for an Ada compiler when Ada support is
> selected in the toolchain.
>
> Could you work on these issues and submit an updated version of your
> patch? In the mean time, I'll mark your patch as "Changes Requested" in
> our patch tracking system.
>
> Thanks a lot!
>
> Thomas
Thanks,
Patrick
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language.
2015-07-21 17:41 ` Patrick Noffke
@ 2015-07-21 19:52 ` Thomas Petazzoni
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2015-07-21 19:52 UTC (permalink / raw)
To: buildroot
Patrick,
On Tue, 21 Jul 2015 12:41:38 -0500, Patrick Noffke wrote:
> Hi Thomas,
>
> On 07/20/2015 04:39 PM, Thomas Petazzoni wrote:
> > Dear Patrick Noffke,
> >
> > Sorry for the long response time. However, unless I missed it, you
> > never resent your patch with git send-email. Can you do this? Also, see
> > some comments below.
>
> I did resend it from another PC on 08 April 2015 at 11:05 a.m. my time.
For some reason it apparently never made it to the list. See the
archives at
http://lists.busybox.net/pipermail/buildroot/2015-April/thread.html.
> But it did not address all of your below comments. I will resend again.
Excellent, thanks a lot!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-07-21 19:52 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-07 19:10 [Buildroot] [PATCH 1/1] Toolchain - Add option to enable Ada language Patrick Noffke
2015-04-08 14:40 ` Jeremy Rosen
2015-04-08 15:51 ` Patrick Noffke
2015-04-08 15:55 ` Patrick Noffke
2015-07-20 21:39 ` Thomas Petazzoni
2015-07-21 17:41 ` Patrick Noffke
2015-07-21 19:52 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox