@adolf
To pass the -fpic (position-independent code) flag to GCC on Linux, you can use the following command:
gcc -fpic source.c -o output
In this command:
You can replace "source.c" with the name of your own source code file, and "output" with the desired name for the output file.