Bug 1423868
Summary: | libosmocore: FTBFS in rawhide | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Fedora Release Engineering <releng> | ||||||||
Component: | libosmocore | Assignee: | Jaroslav Škarvada <jskarvad> | ||||||||
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||||
Severity: | unspecified | Docs Contact: | |||||||||
Priority: | unspecified | ||||||||||
Version: | rawhide | CC: | jskarvad, rc040203 | ||||||||
Target Milestone: | --- | ||||||||||
Target Release: | --- | ||||||||||
Hardware: | Unspecified | ||||||||||
OS: | Unspecified | ||||||||||
Whiteboard: | |||||||||||
Fixed In Version: | Doc Type: | If docs needed, set a value | |||||||||
Doc Text: | Story Points: | --- | |||||||||
Clone Of: | Environment: | ||||||||||
Last Closed: | 2017-02-20 21:15:45 UTC | Type: | --- | ||||||||
Regression: | --- | Mount Type: | --- | ||||||||
Documentation: | --- | CRM: | |||||||||
Verified Versions: | Category: | --- | |||||||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||
Cloudforms Team: | --- | Target Upstream Version: | |||||||||
Embargoed: | |||||||||||
Bug Depends On: | |||||||||||
Bug Blocks: | 1423041 | ||||||||||
Attachments: |
|
Description
Fedora Release Engineering
2017-02-17 15:03:40 UTC
Created attachment 1252936 [details]
build.log
Created attachment 1252937 [details]
root.log
Created attachment 1252938 [details]
state.log
This package suffers from GCC7 having changed inline-behavior. This simple patch to the sources fixes the FTBFS: diff -Naur libosmocore-0.9.0.orig/tests/kasumi/kasumi_test.c libosmocore-0.9.0/tests/kasumi/kasumi_test.c --- libosmocore-0.9.0.orig/tests/kasumi/kasumi_test.c 2015-11-09 10:52:19.000000000 +0100 +++ libosmocore-0.9.0/tests/kasumi/kasumi_test.c 2017-02-20 15:36:21.382439412 +0100 @@ -10,7 +10,7 @@ /* Test vectors are taken from TS 135 202 */ -inline int _compare_mem(uint8_t * x, uint8_t * y, size_t len) +static inline int _compare_mem(uint8_t * x, uint8_t * y, size_t len) { if (0 != memcmp(x, y, len)) { printf ("X: %s\t", osmo_hexdump_nospc(x, len)); Resolved by rebase. |