How to force /usr/bin/gcc -> /usr/bin/gcc -m32?

落爺英雄遲暮 提交于 2019-11-29 02:45:47

If you want a crappy hack, you could replace /usr/bin/gcc with this shell script:

#!/bin/bash
/usr/bin/gcc-4.whatever -m32 "$@"

Set your CFLAGS environment variable to have the -m32 flag.

export CFLAGS="-m32"

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!