Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
多くの場所で hash_map を使用するプログラムを AIX に移植しています。
Linux と Solaris の場合、hash_map は _gnu_cxx パッケージと stlport に含まれています。
ただし、AIX プラットフォームでは hash_map が見つかりません。誰か知ってる?ところで、IBM コンパイラ /usr/vacpp/bin/xlC を使用する必要があります。
ありがとう。
<unordered_map>AIX xlC コンパイラーが必要だと思います。これ<hash_map>は gcc 拡張機能であるためです。
<unordered_map>
<hash_map>
別の名前を使用するようにコードを変更する必要があります (または、翻訳レイヤーでジガリー ポケリーを実行します)。