Chinaunix首页 | 论坛 | 博客
  • 博客访问: 15515908
  • 博文数量: 112
  • 博客积分: 11195
  • 博客等级: 上将
  • 技术积分: 1989
  • 用 户 组: 普通用户
  • 注册时间: 2005-06-20 11:04
文章分类

全部博文(112)

文章存档

2013年(2)

2012年(27)

2011年(6)

2010年(11)

2009年(6)

2007年(7)

2006年(23)

2005年(30)

分类: C/C++

2009-08-20 16:01:14

 

很有趣,在一些场合也很有用的东西,昨天从老张那里淘来了。

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.c
TAR = t
ALL:test.c
        objcopy -I binary -O elf32-i386 -B i386 test.c test.bin
        gcc -o t test.c test.bin

 

objcopy很方便的可以把文本文件做成可以连接器可以连接的对象,进而链进可执行程序里面。

阅读(179404) | 评论(14) | 转发(30) |
给主人留下些什么吧!~~

bzhao2010-01-15 07:44:13

As per man page of objcopy, you can include your picture file and show it in your program. that make a sense.

chinaunix网友2009-09-16 17:32:28

最后不是解释了吗? objcopy很方便的可以把文本文件做成可以连接器可以连接的对象,进而链进可执行程序里面。

caojiangfeng2009-09-04 22:05:37

如1楼的所说。这个程序是干什么的,能不能解释一下?谢谢了

chinaunix网友2009-08-24 21:05:06

???什么用?