* [Buildroot] [PATCH v2, 1/2] package/glibc: can't be built with Optimize for fast
@ 2022-05-15 9:02 Fabrice Fontaine
2022-05-15 9:02 ` [Buildroot] [PATCH v2, 2/2] package/glibc: can't be built without optimization Fabrice Fontaine
2022-05-16 21:47 ` [Buildroot] [PATCH v2, 1/2] package/glibc: can't be built with Optimize for fast Yann E. MORIN
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-05-15 9:02 UTC (permalink / raw)
To: buildroot; +Cc: Romain Naour, Fabrice Fontaine
Fix the following build failure:
In file included from <command-line>:
./../include/libc-symbols.h:82:3: error: #error "glibc must not be compiled with -ffast-math"
82 | # error "glibc must not be compiled with -ffast-math"
| ^~~~~
Fixes:
- http://autobuild.buildroot.org/results/3d91f3685ae6c3e1f765d419ea2c0da4cb0eb3be
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
Changes v1 -> v2 (after review of Yann E. Morin):
- Force -O2 instead of disabling gcc
package/glibc/glibc.mk | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
index 7b46ad42c3..45155fdc28 100644
--- a/package/glibc/glibc.mk
+++ b/package/glibc/glibc.mk
@@ -118,6 +118,11 @@ ifeq ($(BR2_nios2),y)
GLIBC_CFLAGS += -O2
endif
+# glibc can't be built with Optimize for fast
+ifeq ($(BR2_OPTIMIZE_FAST),y)
+GLIBC_CFLAGS += -O2
+endif
+
define GLIBC_CONFIGURE_CMDS
mkdir -p $(@D)/build
# Do the configuration
--
2.35.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH v2, 2/2] package/glibc: can't be built without optimization
2022-05-15 9:02 [Buildroot] [PATCH v2, 1/2] package/glibc: can't be built with Optimize for fast Fabrice Fontaine
@ 2022-05-15 9:02 ` Fabrice Fontaine
2022-05-16 21:47 ` [Buildroot] [PATCH v2, 1/2] package/glibc: can't be built with Optimize for fast Yann E. MORIN
1 sibling, 0 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-05-15 9:02 UTC (permalink / raw)
To: buildroot; +Cc: Romain Naour, Fabrice Fontaine
Fix the following build failure:
In file included from <command-line>:
./../include/libc-symbols.h:75:3: error: #error "glibc cannot be compiled without optimization"
75 | # error "glibc cannot be compiled without optimization"
| ^~~~~
Fixes:
- http://autobuild.buildroot.org/results/1ba20982d5ec0edc751a11a2d5639f5f6477b9bc
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
Changes v1 -> v2 (after review of Yann E. Morin):
- Force -O1 instead of disabling gcc
package/glibc/glibc.mk | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
index 45155fdc28..5772c3355b 100644
--- a/package/glibc/glibc.mk
+++ b/package/glibc/glibc.mk
@@ -118,6 +118,11 @@ ifeq ($(BR2_nios2),y)
GLIBC_CFLAGS += -O2
endif
+# glibc can't be built without optimization
+ifeq ($(BR2_OPTIMIZE_0),y)
+GLIBC_CFLAGS += -O1
+endif
+
# glibc can't be built with Optimize for fast
ifeq ($(BR2_OPTIMIZE_FAST),y)
GLIBC_CFLAGS += -O2
--
2.35.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH v2, 1/2] package/glibc: can't be built with Optimize for fast
2022-05-15 9:02 [Buildroot] [PATCH v2, 1/2] package/glibc: can't be built with Optimize for fast Fabrice Fontaine
2022-05-15 9:02 ` [Buildroot] [PATCH v2, 2/2] package/glibc: can't be built without optimization Fabrice Fontaine
@ 2022-05-16 21:47 ` Yann E. MORIN
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2022-05-16 21:47 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Romain Naour, buildroot
Fabrice, All,
On 2022-05-15 11:02 +0200, Fabrice Fontaine spake thusly:
> Fix the following build failure:
>
> In file included from <command-line>:
> ./../include/libc-symbols.h:82:3: error: #error "glibc must not be compiled with -ffast-math"
> 82 | # error "glibc must not be compiled with -ffast-math"
> | ^~~~~
>
> Fixes:
> - http://autobuild.buildroot.org/results/3d91f3685ae6c3e1f765d419ea2c0da4cb0eb3be
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Both patches applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> Changes v1 -> v2 (after review of Yann E. Morin):
> - Force -O2 instead of disabling gcc
>
> package/glibc/glibc.mk | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
> index 7b46ad42c3..45155fdc28 100644
> --- a/package/glibc/glibc.mk
> +++ b/package/glibc/glibc.mk
> @@ -118,6 +118,11 @@ ifeq ($(BR2_nios2),y)
> GLIBC_CFLAGS += -O2
> endif
>
> +# glibc can't be built with Optimize for fast
> +ifeq ($(BR2_OPTIMIZE_FAST),y)
> +GLIBC_CFLAGS += -O2
> +endif
> +
> define GLIBC_CONFIGURE_CMDS
> mkdir -p $(@D)/build
> # Do the configuration
> --
> 2.35.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-05-16 21:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-15 9:02 [Buildroot] [PATCH v2, 1/2] package/glibc: can't be built with Optimize for fast Fabrice Fontaine
2022-05-15 9:02 ` [Buildroot] [PATCH v2, 2/2] package/glibc: can't be built without optimization Fabrice Fontaine
2022-05-16 21:47 ` [Buildroot] [PATCH v2, 1/2] package/glibc: can't be built with Optimize for fast Yann E. MORIN
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.