全部博文(930)
分类: LINUX
2009-08-22 10:53:40
test.c
|
Makefile
|
objcopy很方便的可以把文本文件做成可以连接器可以连接的对象,进而链进可执行程序里面。
[root@kenthy c_par]# ./test
#include
#include
extern char* _binary_test_c_start;
int main()
{
printf("%s", (char *)&_binary_test_c_start);
printf("hahah\n");
return 0;
}
hahah
有点小意思!!!都还没用过objcopy呢^_^
原文:http://blog.chinaunix.net/u/1574/showart_2032979.html