Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionKai Engert (:kaie) (inactive account)
2016-08-26 20:40:23 UTC
I'm working on bug 1298690, which requires to build NSS with the newer gcc compiler 5.3.1 included in devtoolset-4.
I'm getting build failures:
h_page.c: In function 'overflow_page':
h_page.c:985:4: error: ignoring return value of 'fwrite', declared with attribute warn_unused_result [-Werror=unused-result]
(void)fwrite(OVMSG, 1, sizeof(OVMSG) - 1, stderr);
^
h_page.c:1000:4: error: ignoring return value of 'fwrite', declared with attribute warn_unused_result [-Werror=unused-result]
(void)fwrite(OVMSG, 1, sizeof(OVMSG) - 1, stderr);
^
h_page.c:1026:5: error: ignoring return value of 'fwrite', declared with attribute warn_unused_result [-Werror=unused-result]
(void)fwrite(OVMSG, 1, sizeof(OVMSG) - 1, stderr);
These are apparently caused by the following combination:
- fwrite defined with __wur in /usr/include/stdio.h
extern size_t fwrite (__const void *__restrict __ptr, size_t __size,
size_t __n, FILE *__restrict __s) __wur;
- __wur defined as __attribute_warn_unused_result__ if
__USE_FORTIFY_LEVEL > 2
- default XCFLAGS of RPM builds containing -D_FORTIFY_SOURCE=2
Comment 1Kai Engert (:kaie) (inactive account)
2016-08-26 20:43:18 UTC
Who knows why RHEL 6 rpm builds enable these fortify features by default?
Is it acceptable for RHEL 6 builds to override that and build without it?
If not, are we reqiured to use downstream patches that add code that tricks the compiler into believing we're not ignoring the return values?
Is there any simpler workaround?
You can use -Wno-error=unused-result, either globally, or for specific targets.
In general, the assumption is that you do not build with -Werror.
Comment 3Kai Engert (:kaie) (inactive account)
2016-08-26 20:52:11 UTC
(In reply to Florian Weimer from comment #2)
> You can use -Wno-error=unused-result, either globally, or for specific
> targets.
>
> In general, the assumption is that you do not build with -Werror.
The upstream NSS sources have been changed to build with -Werror
Comment 4Kai Engert (:kaie) (inactive account)
2016-08-26 20:55:14 UTC
Florian, thanks a lot for your help. That compiler option fixes the problem!