MacでCコードをコンパイルすると、このエラーが発生する問題が発生します。
致命的なエラー: 'endian.h'ファイルが見つかりません
この問題についてグーグルで検索しました。macos xには「endian.h」のようなヘッダーファイルがないようです。手動でこのファイルを作成する必要があります。
次に、これを見つけました http://www.opensource.Apple.com/source/CarbonHeaders/CarbonHeaders-18.1/Endian.h これは私が探しているファイルである可能性がありますが、よくわかりません。
しかし、さらにトラブルが発生します。このファイルはどこに置くべきですか?
ファイル/ usr/includeが存在しません。
これらは私の/ usrディレクトリのフォルダです:
X11 bin libexec共有X11R6 lib sbinスタンドアロン
誰かが私が見つけたendian.hファイルの正確さをチェックし、このファイルを私のMacのどこに置くか教えてくれますか?
OS XのXcodeは、デフォルトではコマンドラインツールをインストールしません。 XcodeとOS Xのバージョンに応じて、
xcode-select --install
ターミナルのコマンドラインから。これにより、「/ usr/include/machine/endian.h」を含む「/ usr/include」ファイルもインストールされます。
Xcode 10以降については、 Camille G.の回答 を参照してください。
<machine/endian.h>
ではなく<endian.h>
を使用しました。
できます。
最初のコメントで述べたように、endian.h
は/usr/include/machine/
フォルダにあります。
XCode 10.Xのコマンドラインツール(macOS 10.X)をダウンロードApple: https://developer.Apple.com/download/more /
MacOS 10.14以降では、/ usr/includeフォルダーは作成されません。これには、コンピューターに追加パッケージをインストールする必要があります。コマンドラインツールをインストールした場合:
/ライブラリ/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg
実際、「Endian.h」をインポートする必要があります。ディスクマネージャーを確認してください。ディスクでは大文字と小文字が区別される可能性があります。
今日も同様の問題がありました。問題を解決するために、endian.h
に/usr/local/include/endian.h
という名前のファイルを作成しました。
#ifndef __FINK_ENDIANDEV_PKG_ENDIAN_H__
#define __FINK_ENDIANDEV_PKG_ENDIAN_H__ 1
/** compatibility header for endian.h
* This is a simple compatibility shim to convert
* BSD/Linux endian macros to the Mac OS X equivalents.
* It is public domain.
* */
#ifndef __Apple__
#warning "This header file (endian.h) is MacOS X specific.\n"
#endif /* __Apple__ */
#include <libkern/OSByteOrder.h>
#define htobe16(x) OSSwapHostToBigInt16(x)
#define htole16(x) OSSwapHostToLittleInt16(x)
#define be16toh(x) OSSwapBigToHostInt16(x)
#define le16toh(x) OSSwapLittleToHostInt16(x)
#define htobe32(x) OSSwapHostToBigInt32(x)
#define htole32(x) OSSwapHostToLittleInt32(x)
#define be32toh(x) OSSwapBigToHostInt32(x)
#define le32toh(x) OSSwapLittleToHostInt32(x)
#define htobe64(x) OSSwapHostToBigInt64(x)
#define htole64(x) OSSwapHostToLittleInt64(x)
#define be64toh(x) OSSwapBigToHostInt64(x)
#define le64toh(x) OSSwapLittleToHostInt64(x)
#endif /* __FINK_ENDIANDEV_PKG_ENDIAN_H__ */
要旨は
https://Gist.github.com/dendisuhubdy/19482135d26da86cdcf442b3724e0728
または、代わりにendian.h
を指すヘッダーを変更します
#if defined(OS_MACOSX)
#include <machine/endian.h>
#Elif defined(OS_SOLARIS)
#include <sys/isa_defs.h>
#ifdef _LITTLE_ENDIAN
#define LITTLE_ENDIAN
#else
#define BIG_ENDIAN
#endif
#Elif defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_NETBSD) ||\
defined(OS_DRAGONFLYBSD)
#include <sys/types.h>
#include <sys/endian.h>
#else
#include <endian.h>
#endif