I am working on an embedded linux system and try to get python-wand
running...
But i am not able to install anything on this system so i included them in the lib folder of my application (this folder will be linked to the system).
Its not possible to update the glibc version of the system.
To test if its working i am using:
from ctypes import *
cdll.LoadLibrary('libMagickWand-6.Q16.so.6')
This will throw:
OSError: /lib/libc.so.6: version `GLIBC_2.17' not found (required by ../libMagickCore-6.Q16.so.6)
So is it possible to build ImageMagick with a different glibc version packed ?
I am new to compiling but this should work if i can change glibc only for ImageMagick.
Is it possible if i compile ImageMagick with a older version of glibc ?
Is the compiled code affected by the gcc / glibc version ?