Skip to content
Snippets Groups Projects
Commit 7cf2b317 authored by Georgiy Lebedev's avatar Georgiy Lebedev Committed by Vladimir Davydov
Browse files

build: fix `-Wstrict-aliasing` compiler warning

Fix strict aliasing rules violation by explicitly calling `memcpy`.

libev is treated in a special way: -Wstrict-aliasing warning are ignored
there, because:
1. libev authors claim that this is a false positive and their code is
correct in respect to aliasing rules: see
* http://lists.schmorp.de/pipermail/libev/2010q1/000943.html
* http://lists.schmorp.de/pipermail/libev/2015q2/002540.html
2. it's a common practice to ignore compiler warning in libev: see
* http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#COMPILER_WARNINGS
* https://github.com/tarantool/tarantool/blob/dec0e0221e183fa972efa65bb0fb658112f2196f/cmake/BuildLibEV.cmake#L6-L12

Ignoring `-Wstrict-aliasing` for libev using diagnostic pragmas does not
work, apparently, due to a bug in GNU: use the `system_header` pragma
instead — ignoring all compiler warnings coming from libev is a win-win
anyways.

Needed for #7862

NO_CHANGELOG=build
NO_DOC=build
NO_TEST=build
parent c600b305
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment