Linux 创建静态库以及静态库的使用
1 手动建立静态库
#ifndef __helpguy_h__ #define __helpguy_h__ #include <stdlib.h> #include <stdio.h> #include <unistd.h> void err_msg(const char* errMsg, ...); #endif // __helpguy_h__
#include "helpguy.h" #include <stdarg.h> #include <errno.h> #include <string.h> void exit_msg(const char* errMsg, ...) { va_list ap; va_start(ap, errMsg); int errno_save = errno; char buf[1024]; vsnprintf(buf, sizeof(buf) - 1, errMsg, ap); if(errno_save != 0) { int len = strlen(buf); snprintf(buf + len, sizeof(buf) - len - 1, ": (%d) %s", errno_save, strerror(errno_save)); } strcat(buf, "\n"); // output fflush(stdout); fputs(buf, stderr); fflush(stderr); va_end(ap); exit(1); }
2 静态库的使用
#include "helpguy.h" #include <iostream> int main(int argc, char** argv) { std::cout << "Please enter positive integer: "; int value; std::cin >> value; if(value <= 0) exit_msg("need positive integer"); std::cout << "The value is: " << value << std::endl; std::cout << "OK" << std::endl; return 0; }
3 通过makefile文件建立静态库
LIBS=-lrt -pthread
libhelpguy.a: helpguy.o
ar crs $@ $^
chmod u+x $@
helpguy.o: helpguy.cc
g++ -o $@ -c $< $(CFLAGS)
clean:
rm -rf helpguy.o
ar crs libhelpguy.a helpguy.o
chmod u+x libhelpguy.a
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。