Commit 31a72684 by Ben Noordhuis

Fix non-x86_64 build failure.

The inclusion of gcc-preinclude.h breaks the build on ARM and i386
because of the missing .symver symbol.  Only define it on x86_64.

Closes out mapbox/node-sqlite3#445.
parent 9ec57d18
// https://rjpower9000.wordpress.com/2012/04/09/fun-with-shared-libraries-version-glibc_2-14-not-found/
#if defined(__x86_64__)
__asm__(".symver memcpy,memcpy@GLIBC_2.2.5");
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment