自学内容网 自学内容网

Linux ---gcc

c语言的链接类型:

动态链接:

ll /lib64/libc-2.17.so

静态链接:

ll /lib64/libc.a

glibc-static安装-CSDN博客icon-default.png?t=N7T8https://blog.csdn.net/itas109/article/details/104226783在Linux中下载c语言的静态库。

gcc test.c -o test.s -static

以静态链接的形式对程序进行编译。

g++ mytest.cpp -o mytest

动态编译c++

Linux 中 g++: command not found 解决方法-CSDN博客icon-default.png?t=N7T8https://blog.csdn.net/TheWindRisesll/article/details/86373940

file mytest

查看链接方式。

change time 为属性修改时间

modify 为内容修改时间

属性改变,内容不一定改变。

内容发生改变,往往会引起属性的变化。

access time 一段时间更新一次

stat xxx

查看文件信息

fflush(stdout)

强制刷新输出

\n在Linux中可带表行缓存

回车:回到当前行的最开始

换行:换到下一行

#include<stdio.h>
#include<unistd.h>
int main()
{
    int cnt=10;
    while(cnt)
    {
        printf("%2d\r",cnt);
        fflush(stdout);
        cnt--;
        sleep(1);
    }
    return 0;
}

倒计时小程序

make 

make 是一个命令

@centos mk]$ make
gcc -o mycode mycode.c 

makefile

makefile是一个文件

@centos mk]$ cat makefile
mycode:mycode.c
        gcc -o mycode mycode.c 

目标文件:依赖列表

第二行必须以tab建开头

.PHONY表示clean是一个伪目标,该目标总是被执行的。

touch mycode.c

可以更新当前文件的时间。

默认makefile指形成一个可执行目标文件。后续不执行。

复杂化后其相当于栈


原文地址:https://blog.csdn.net/2301_77479435/article/details/140360819

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!