makefile文件的不同写法 2019-02-23 memo 封装so库时的写法 12345678910111213141516CC=gccSRCS=mylib.cOBJS=$(SRCS:.c=.o)EXEC=libmylib.sostart: $(OBJS) $(CC) -o $(EXEC) $(OBJS) -shared.c.o: $(CC) -o $@ -c $< -fPICclean: rm -rf $(OBJS) Read More C/C++
循序渐进写makefile 2019-02-23 memo 准备工作 main.cpp 12345678910#include <iostream>#include "a.h"using namespace std;int main(){ test(); cout << "hello world" << endl; return 0;} a.h 12345#ifndef AH_H#define AH_Hvoid test();#endif a.cpp 123456#include <stdio.h>void test(){ printf("I am test\n");} Read More C/C++
C语言核心技术 2018-05-26 memo 宽字符为了更好地支持Unicode,C11引入额外的宽字符类型char16_t和char32_t。在头文件uchar.h中,它们被定义为无符号整数类型。 Read More C/C++