Displaying 3 results from an estimated 3 matches for "slave01".
2015 Nov 18
2
Re: [PATCH 5/5] build: Enable some more warnings.
...asprintf_nowarn
Disabling -Winline causes the Python binding code to fail with build
with GCC < 4.9, because of the static inline functions in
python/guestfs-py.h. See for example on CentOS 7.1 and openSUSE 13.1:
https://ci.centos.org/view/libguestfs/job/libguestfs/label=libguestfs-ci-CentOS-7-slave01/108/console
https://ci.centos.org/view/libguestfs/job/libguestfs/label=libguestfs-ci-opensuse-13.2-slave01/108/console
Would it be acceptable to de-inline them into normal functions?
--
Pino Toscano
2015 Nov 18
0
Re: [PATCH 5/5] build: Enable some more warnings.
...t; Disabling -Winline causes the Python binding code to fail with build
> with GCC < 4.9, because of the static inline functions in
> python/guestfs-py.h. See for example on CentOS 7.1 and openSUSE 13.1:
> https://ci.centos.org/view/libguestfs/job/libguestfs/label=libguestfs-ci-CentOS-7-slave01/108/console
> https://ci.centos.org/view/libguestfs/job/libguestfs/label=libguestfs-ci-opensuse-13.2-slave01/108/console
>
> Would it be acceptable to de-inline them into normal functions?
The -Winline warning looks completely useless. Who cares if a
function can't be inlined? So e...
2015 Nov 09
6
[PATCH 0/5] build: Enable some more warnings.
Add some warnings. Well, the first patch is a miscellaneous
change, but patches 2-5 add some warnings.
Rich.