I got some relocation error at the linking stage while playing around with the code, and then noticed that the platform-specific code in impl-sse and impl-vmx was not built with -fPIC even after configuring with ./configure --enable-PIC. Turns out both Makefile.in were not taking ${PIC_CFLAGS} into account while compiling, so I fixed that in this PR.
Hi!
I got some relocation error at the linking stage while playing around with the code, and then noticed that the platform-specific code in
impl-sse
andimpl-vmx
was not built with-fPIC
even after configuring with./configure --enable-PIC
. Turns out bothMakefile.in
were not taking${PIC_CFLAGS}
into account while compiling, so I fixed that in this PR.