[An Introduction to GCC 学习笔记] 03 hello world编译多个文件

Posted 漫小牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[An Introduction to GCC 学习笔记] 03 hello world编译多个文件相关的知识,希望对你有一定的参考价值。

helloworld

The classic example program for the C language is:

#include <stdio.h>

int main(void)
{
	printf("Hello world!\\n");
	return 0;
}

To compile the file with gcc, use the following command:

$ gcc -Wall hello.c -o hello

在众多的警告选项之中,最常用的就是-Wall选项。该选项能发现程序中一系列的常见错误警告。
该选项相当于同时使用了下列所有的选项:
◆unused-function:遇到仅声明过但尚未定义的静态函数时发出警告。
◆unused-label:遇到声明过但不使用的标号的警告。
◆unused-parameter:从未用过的函数参数的警告。
◆unused-variable:在本地声明但从未用过的变量的警告。
◆unused-value:仅计算但从未用过的值得警告。
◆Format:检查对printf和scanf等函数的调用,确认各个参数类型和格式串中的一致。
◆implicit-int:警告没有规定类型的声明。
◆implicit-function-:在函数在未经声明就使用时给予警告。
◆char-subscripts:警告把char类型作为数组下标。这是常见错误,程序员经常忘记在某些机器上char有符号。
◆missing-braces:聚合初始化两边缺少大括号。
◆Parentheses:在某些情况下如果忽略了括号,编译器就发出警告。
◆return-type:如果函数定义了返回类型,而默认类型是int型,编译器就发出警告。同时警告那些不带返回值的 return语句,如果他们所属的函数并非void类型。
◆sequence-point:出现可疑的代码元素时,发出报警。
◆Switch:如果某条switch语句的参数属于枚举类型,但是没有对应的case语句使用枚举元素,编译器就发出警告(在switch语句中使用default分支能够防止这个警告)。超出枚举范围的case语句同样会导致这个警告。
◆strict-aliasing:对变量别名进行最严格的检查。
◆unknown-pragmas:使用了不允许的#pragma。
◆Uninitialized:在初始化之前就使用自动变量。
查看gcc的版本:

gcc --version

在这里插入图片描述
gcc编译hello world与执行:
在这里插入图片描述

编译一个有问题的程序

#include <stdio.h>

int main(void)
{
        printf("Two plus two is %f\\n", 4);
        return 0;
}

编译后有warning,但是没有error:
在这里插入图片描述
运行后,不符合预期:
在这里插入图片描述
在一些gcc版本中,如果不加-Wall编译时,并不会报Warning,这也体现了-Wall编译,给用户提示Warning信息的重要性。

Compiling Multiple Source Files

  • A program can be split up into multiples files. This makes it easier to edit and understand, especially in the case of large programs.
  • The difference between the tow forms of the include statement
    #include “FILE.h” and #include <FILE.h> is
    • 1 include “FILE.h” searches for “FILE.h” in the current directory before looking in the system header file directories.
    • 2 include <FILE.h>searches the system header files, but does not look in the current directory by default.

编译多个文件的命令

gcc -Wall -file1.c -file2.c -o file

以上是关于[An Introduction to GCC 学习笔记] 03 hello world编译多个文件的主要内容,如果未能解决你的问题,请参考以下文章

[An Introduction to GCC 学习笔记] 09 -Wall

[An Introduction to GCC 学习笔记] 14 优化问题3

[An Introduction to GCC 学习笔记] 14 优化问题3

[An Introduction to GCC 学习笔记] 13 优化问题2

[An Introduction to GCC 学习笔记] 10 Warn预编译

[An Introduction to GCC 学习笔记] 07 链接外部静态库