Star-Nightghost4embedded.blog.chinaunix.net
ap0405209
全部博文(1493)
2016年(11)
2015年(38)
2014年(137)
2013年(253)
2012年(1054)
2011年(1)
chinepin
wenlan88
jisoncas
luozhiyo
kuce2006
muwuxie
酷小川11
smile124
wangxiao
时讯无线
1cpuer
cynthia
浪花小雨
Bsolar
分类: C/C++
2014-03-30 14:01:57
原文地址:一段自己打印自己的c程序 作者:playmud
很有趣,在一些场合也很有用的东西,昨天从老张那里淘来了。
test.c
#include <stdio.h>#include <stdlib.h>extern char * _binary_test_c_start;int main(){ printf("%s", (char *)&_binary_test_c_start);}
Makefile
SRC = test.cTAR = tALL:test.c objcopy -I binary -O elf32-i386 -B i386 test.c test.bin gcc -o t test.c test.bin
objcopy很方便的可以把文本文件做成可以连接器可以连接的对象,进而链进可执行程序里面。
上一篇:Linux mmc sd sdio驱动分析(3-2)
下一篇:编写安全代码——小心有符号数的右移操作
登录 注册