I am getting two errors in code block which I am not able to remove. I think they are linking errors:
ld can't find -lc
ld can't find -lm
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ensure you have set correctly LD_LIBRARY_PATH for searching library path. The linker is looking for static library files libc.a and libm.a. They are standard c library and math library.