当前位置: 技术问答>linux和unix
aCC 编译时总是给出警告/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (SY01.o) was detected. The linked output may n
来源: 互联网 发布时间:2015-04-20
本文导语: /usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (SY01.o) was detected. The linked output may not run on a PA 1.x system. 怎样才能解除这个信息 | This is an issue with the portability of the executable...
/usr/ccs/bin/ld: (Warning) At least one PA 2.0 object file (SY01.o) was detected. The linked output may not run on a PA 1.x system.
怎样才能解除这个信息
怎样才能解除这个信息
|
This is an issue with the portability of the executable you compile.
do as follows:
CC -o +DAportable test test.c
do as follows:
CC -o +DAportable test test.c
|
这是因为你的hp机器的cpu是64位基于PA2.0架构的,在用aCC编译的时候就会提出警告
告诉你现在编译的程序在cpu为32位基于PA1.x架构的hp系统上不能运行
你可以按楼上的编译器选项来定制可执行码的文件格式,也可以直接加-w参数将警告信息屏蔽
aCC的各种参数用man aCC就能看到。
告诉你现在编译的程序在cpu为32位基于PA1.x架构的hp系统上不能运行
你可以按楼上的编译器选项来定制可执行码的文件格式,也可以直接加-w参数将警告信息屏蔽
aCC的各种参数用man aCC就能看到。