Linux (Ubuntu) GCC compilation contains library function issues

Source: Internet
Author: User
Tags pow

The GCC compile command is typically: GCC hello.c-o hello.out

Note: If a library function (such as MATH.H) is referenced in hello.c, direct compilation will be an error

"/tmp/ccalvmpy.o:in function ' main ':
/TMP/CCALVMPY.O (. text+0x40): Undefined reference to ' POW ' "

Reason:
Because in Linux, the POW function is defined in libm.so,
Unlike the general devc++ or TC is placed in the C language of the/lib,
Therefore, C cannot find the corresponding library to connect at the time of connection.

Workaround:
The compiler has some more common parameters, where-L is used to identify the library information to be linked:
-LM indicates the need to link the Math library LIBM.A or libm.so or LIBM.SL

Use the following compile command to tell the program the location of the math library

GCC Hello.c-o hello.out-lm

Linux (Ubuntu) GCC compilation contains library function issues

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.