次のプログラムをコンパイルすると(C++ の 64 ビット ntohl() から取得したすべての定義のコード?これは賢明に思えました):
#include <stdint.h>
#if defined(__linux__)
#include <endian.h> //htobe64,be64toh
#include <arpa/inet.h> //ntohs, ntohl, htonl, htons
#elif defined(__FreeBSD__) || defined(__NetBSD__)
#include <sys/endian.h>
#elif defined(__OpenBSD__)
#include <sys/types.h>
#define be16toh(x) betoh16(x)
#define be32toh(x) betoh32(x)
#define be64toh(x) betoh64(x)
#endif
int main()
{
int64_t i = 0x1212121234343434;
int64_t j = be64toh(i);
return 0;
}
次のコマンドでコンパイルすると、リンク エラーが発生します (Linux を実行しています)。
gcc -std=c99 endian_test.c -o endian
私が受け取るエラーは次のとおりです。
user@host ~/src/c $ gcc -std=c99 derp.c
endian_test.c: In function ‘main’:
endian_test.c:17:2: warning: implicit declaration of function ‘be64toh’ [-Wimplicit-function-declaration]
int64_t j = be64toh(i);
^
/tmp/ccYonfH4.o: In function `main':
endian_test.c:(.text+0x23): undefined reference to `be64toh'
collect2: error: ld returned 1 exit status
ヘッダー自体は含まれていますが、これが機能するために必要な関数/マクロが実際には含まれていません.リンクすること。
しかし、次のコマンドを使用してコンパイルすると (削除するだけです-std=c99
):
gcc endian_test.c -o endian
すべてがバターのように滑らかで機能します。なぜそれが起こっているのか、それを修正するために何ができるのか考えていますか? コンパイル時に使用する標準に応じて、カーネルによって提供される関数が変わることは意味がありません (または、その事実で間違っていますか?)。
前もって感謝します!