Static linking of MySQL in C/C++
I am trying to develop an application that uses MySQL using C++. I downloaded the library from their website and I have attempted to compile the following code:
I am trying to develop an application that uses MySQL using C++. I downloaded the library from their website and I have attempted to compile the following code:
How feasible would it be to compile Python (possibly via an intermediate C representation) into machine code?
$ file /lib/ld-linux.so.2 /lib/ld-linux.so.2: symbolic link to i386-linux-gnu/ld-2.27.so $ readlink -f /lib/ld-linux.so.2 /lib/i386-linux-gnu/ld-2.27.so $ file /lib/i386-linux-gnu/ld-2.27.so /lib/i386-linux-gnu/ld-2.27.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=7a59ed1836f27b66ffd391d656da6435055f02f8, stripped So is ld-2.27.so a shared library? It is said to be a dynamic linker/loader and mentioned in section 8 of man. So is it … Read more
I want to remove some of the paths the linker uses to find .so libraries for testing purposes.