error: bp cannot be used in asm here
The odds are that you are trying to compile 32-bit assembly code in 64-bit program.
The solution is to compile for 32-bit or re-write your assembly for 64-bit.
To compile for 32-bit, use -m32 in CFLAGS and CPPFLAGS
You might also need this :
$> yum install glibc-devel.i68
$> yum install libstdc++.i686
Recent Comments