我有一个项目需要在 Windows、Linux 和 VxWorks 上构建。该项目基于 Linux 和 Windows 构建,但针对 VxWorks 进行了交叉编译。为了跨多个平台处理字节序,它使用 ntoh.h。Linux 机器是小端的,但 ntohl 不会在我的程序中交换。
我写了一个直接包含in.h的测试程序。适当地交换。我编写了另一个仅包含 ntoh.h 的测试程序。适当地交换。两个测试程序都链接到 lib64/libc.so.6。
但是,当我编译我的项目时,ntohl 不会交换。我无法使用 gdb "break ntohl" 命令中断 ntohl。构建时,我看到LITTLE ENDIAN警告(见下文)并且没有看到“应该在此处”错误。
请帮忙。我不明白为什么会出现这个问题。
下面是ntoh.h:
#ifndef __ntoh__
#define __ntoh__
#include "basic_types.h"
#ifdef WIN32
#include <winsock2.h>
#elif LINUX
#include <netinet/in.h>
//This is here to determine what __BYTE_ORDER is set to in netinet/in.h.
// Not in original code
#if __BYTE_ORDER == __BIG_ENDIAN
#warning BIG ENDIAN BYTE ORDER!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
#endif
//This is here to determine what __BYTE_ORDER is set to in netinet/in.h.
// Not in original code
#if __BYTE_ORDER == __LITTLE_ENDIAN
#warning YAY LITTLE ENDIAN!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
#endif
#else
#error SHOULDNT BE HERE //added for debugging purposes
#define ntohl(x) (x)
#define ntohs(x) (x)
#define htonl(x) (x)
#define htons(x) (x)
#endif
#endif // __ntoh__
我的编译命令的一部分:
g++ -DDAU_PARSER -DNO_MT -DTEST_CLOCK -DLINUX -g -Irelease/include -Irelease/include/Record_Data/ -Irelease/include/Utility -o dauParser DAU_Support_Tools/src/dau_parser.cpp DAU_Support_Tools/src/dau_parser_write_data_to_file.cpp Utility/src/Messaging/Communications/Message.cpp Utility/src/time_type.cpp Utility/src/collectable.cpp Utility/src/clist.cpp Utility/src/clock.cpp Utility/src/test_clock.cpp Utility/src/mutex.cpp Utility/src/ntoh.cpp ...
错误是由以下几行产生的:
int deadbeef = 0xDEADBEEF;
printf("TESTING DEADBEEF %x %x\n", deadbeef, ntohl(deadbeef) );
这两条线的输出产生相同的输出。测试死牛肉 deadbeef deadbeef