Hello,
I am using the OpenSSL BIGNUM lib for my program. I got rid of all the compiler errors/warnings about it's usage, and when I thought it would compile:
The file is there, and the compiler knows where it is.
I guess I have to use some special GCC flags(like with math.h "-lm")?
Tried to Google, but didn't succeed.
Thanks in advance.
I am using the OpenSSL BIGNUM lib for my program. I got rid of all the compiler errors/warnings about it's usage, and when I thought it would compile:
Code:
rabler.c:(.text+0x1a8): undefined reference to `BN_CTX_new' rabler.c:(.text+0x1cc): undefined reference to `BN_mod_exp'
I guess I have to use some special GCC flags(like with math.h "-lm")?
Tried to Google, but didn't succeed.
Thanks in advance.
Comment