我正在尝试移植一个Linux库以在VxWorks上运行。我已经成功地构建了针对i486-wrs-vxworks的binutils和gcc,我可以成功地构建一个简单的C程序。但是,当我尝试编译C++时,事情就坏了。
我有一个简单的Hello World程序:
#include <string>
#include <iostream>
int main()
{
std::string s = "Hello World";
std::cout << s << std::endl;
return 0;
}
为了构建它,我调用:
i486-wrs-vxworks-gcc -I/home/kyle/vxworks-6.9/target/usr/h -I/home/kyle/vxworks-6.9/target/usr/h/c++ hello.cpp
此操作始终失败,并显示以下消息:
In file included from /home/kyle/vxworks-6.9/target/usr/h/c++/cerrno:4:0,
from /home/kyle/vxworks-6.9/target/usr/h/c++/xlocnum:4,
from /home/kyle/vxworks-6.9/target/usr/h/c++/ios:4,
from /home/kyle/vxworks-6.9/target/usr/h/c++/ostream:4,
from /home/kyle/vxworks-6.9/target/usr/h/c++/istream:4,
from /home/kyle/vxworks-6.9/target/usr/h/c++/string:4,
from hello.cpp:1:
/usr/local/lib/gcc/i486-wrs-vxworks/4.6.4/../../../../i486-wrs-vxworks/include/yvals.h:4:24: fatal error: yvals.h: No such file or directory
如果我去看里面/usr/local/i486-wrs-vxworks/include/yvals.h
,这就是我看到的:
/* yvals.h values header for conforming compilers on various systems */
#if (defined(__cplusplus) && defined(__GNUC__))
/* GCC C++ has it's own yvals.h */
#include_next <yvals.h>
#else /* __cplusplus && __GNUC__ */
#ifndef _YVALS
#define _YVALS
#ifdef _NO_WINDRIVER_MODIFICATIONS
#include <stdarg.h>
#endif
...
似乎还有另一个yvals.h
需要包括在内,但我在任何地方都找不到它。我只是在正确构建 gcc 时失败了,还是有办法解决这个问题?
你使用的是哪个版本的VxWorks?
我模糊地记得,过去升级VxWorks版本时,yvals.h中存在语法错误,我需要解决该问题,并在后续版本中修复。
此外,您可以从WindRiver获得预先构建的gcc交叉编译器。只需使用您的许可证号登录 windriver.com/support,然后前往产品版本的"下载"。
我自己最近经历了一个交叉编译的噩梦(与VxWorks无关),除了不是yvals.h,而是我对stddef.h感到悲伤。 问题是我需要指定系统头文件的包含路径。
以下是我解决错误消息所花费的步骤。 请随意修改。
创建一个文件 foo.c
#include <stddef.h> /* The problem header file (yvals.h for you?) */
int main (void) {
return 0;
}
使用您选择的编译器进行编译
$(CC) foo.c -E
记下它使用的包含路径,并使用
-isystem <include path>
选择。
希望这有帮助。