ubuntu 64上的GCC如何编译32位程序】的更多相关文章

运行命令 gcc -v 显示: Target: x86_64-linux-gnu 所以,我这里的gcc默认生成64位的程序. 如果想编出32位的程序,就要加 -m32选项.可是我尝试了,还是不行. 原来,需要安装东西. $ sudo apt-get install build-essential module-assistant $ sudo apt-get install gcc-multilib g++-multilib 装好之后,就OK了. 比如: gcc -m32 hello.c…
  最近在64位ubuntu上开发,需要编译32位程序,需要安装这两个包,然后在编译器参数加上-m32.不放心的话可以用ldd或file查看一下是否生成了对应位数的程序. $ apt-get install build-essential module-assistant $ apt-get install gcc-multilib g++-multilib…
在64位linux下编译32位程序 http://blog.csdn.net/xsckernel/article/details/38045783…
test.c #include <stdio.h> int main() { printf("sizeof long is %d\n",sizeof(long)); ; } 64位编译 [swdn@dev desktop]$ gcc test.c[swdn@dev desktop]$ file a.outa.out: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses s…
昨天接到的任务,编译64位和32位两个版本的.so动态库给其他部门,我的ubuntu虚拟机是64位的,编译32位时遇到了问题: /usr/bin/ld: cannot find -lstdc++ 最后在stackoverflow上看到了解决方案(安装multilib,我的源程序既有c又有cpp,所以只好gcc和g++都装了): sudo apt-get install gcc-multilib sudo apt-get install g++-multilib 然后再 gcc -I./inclu…
问       题1: 找不到头文件 asm/errno.h 解决办法 : [/usr/lib/gcc$ ]sudo ln -s x86_64-linux-gnu/asm asm 问题2:找不到gcc静态库,错误描述如下 ~/tools/dnn-offline-htk-/HTKTools$ gcc -o HBuild -m32 -ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH="x86_64"' -Wall -Wno-switch -g -I ../HT…
编辑中 # ld -V GNU ld version 2.15.92.0.2 20040927 Supported emulations: elf_x86_64 elf_i386 i386linux #ld -m elf_i386 Along with the -m32 flag in gcc, you may need to include the -melf_i386 flag for ld to properly link the 32bit object files to the 32b…
首先要打开64位系统对32位的支持 第一步:确认64为架构的内核 dpkg --print-architecture 输出:adm64 说明已拥有64位架构内核. 第二步:确认打开了多架构支持功能 dpkg --print-foreign-architectures 输出:i386 说明已打开,如果没有需要手动打开 打开多架构支持 sudo dpkg --add-architecture i386 sudo apt -get update sudo apt-get dist-upgrade 如此…
测试机器: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…
项目中需要使用runkit模块实现AOP,但是团队成员的开发环境都是Windows,而runkit模块官方没有提供Windows环境下的dll扩展,只能自己编译. 下面是编译过程的分类总结.(操作系统环境为Windows 10 64位中文旗舰版) PHP的编译版本这里的版本指的不是PHP的发行版本,如5.3.7.0,而是指编译时所使用的编译器.程序架构和是否为线程安全.这些信息可以在phpinfo中打印出来.上图中所使用的PHP,是使用Miscrosoft Visual 2012中的MSVC11…