Hello Steve,

> It's possible/likely that this build failure is caused by the use of -O3
by
> default for ppc64el builds in Ubuntu; so the attached patch, while it
fixes
> the problem in Ubuntu and should be harmless in Debian, may not be
something
> you want to apply as-is.  Perhaps you would prefer to use $(filter
-O3,...)
> instead?

Thank you for reporting this issue.

Your idea of using $(filter -O3,...) looks good to me, but I would like to
clarify one thing.

When I tried to reproduce the issue on ppc64el with Debian unstable as of
September 22, 2024, I was unable to do so.
According to the build log[0] on ppc64el, it appears that the -O2 option is
used for the build rather than -O3.

For further investigation, if the following change is applied to d/rules,
the issue is reproduced on ppc64el with Debian unstable, but that is not
what we want to do.

```
--- ../blktrace/debian/rules    2024-08-18 06:21:55.984000000 +0000
+++ debian/rules        2024-09-22 06:48:37.696000000 +0000
@@ -5,7 +5,7 @@
 include /usr/share/dpkg/architecture.mk
 include /usr/share/dpkg/pkg-info.mk

-CFLAGS += -Wall -Wextra -Wno-shadow -Werror -g
+CFLAGS += -Wall -Wextra -Wno-shadow -Werror -g -O3

 export DEB_BUILD_MAINT_OPTIONS = hardening=+all future=+all qa=+all
reproducible=+all
```

Additionally, the -O2 option is used for all CPU architectures in Ubuntu
except for ppc64el[1], which makes me wonder why -O3 is used for ppc64el in
Ubuntu.
Do you have any idea why -O3 is used only for ppc64el in Ubuntu?
I would like to know whether this issue is specific to Ubuntu.

[0]
https://buildd.debian.org/status/fetch.php?pkg=blktrace&arch=ppc64el&ver=1.2.0-5&stamp=1551092176&raw=0
[1] https://launchpad.net/ubuntu/+source/blktrace/1.2.0-5build1

Best regards,
Fukui

Reply via email to