首页 > 系统 > Linux > 正文

Linux 64位编译/链接32位程序

2024-06-28 13:22:49
字体:
来源:转载
供稿:网友
linux 64位编译/链接32位程序

测试机器:Ubuntu14.04 64位

gcc编译32位程序,添加参数-m32:

$ gcc -c -fno-builtin -m32 TinyHelloWorld.c

ld链接32位代码,添加参数-melf_i386:

$ ld -static -melf_i386 -e nomain -o TinyHelloWorld TinyHelloWorld.o


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表