web-dev-qa-db-ja.com

x86_64-w64-mingw32-g ++:バイナリファイルを実行できません:Exec形式エラー

64ビットのubuntu仮想マシンと64ビットのバイナリがまだExecフォーマットエラーを取得しています。

$ lsb_release -a    
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.1 LTS
Release:    14.04
Codename:   trusty   

$ uname -a    
Linux shrikant-VirtualBox 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux   

$ file ../Mingw_instatllation/bin/x86_64-w64-mingw32-g++     
../Mingw_instatllation/bin/x86_64-w64-mingw32-g++: Mach-O 64-bit x86_64 executable    

$ ../Mingw_instatllation/bin/x86_64-w64-mingw32-g++ test.cpp    
bash: ../Mingw_instatllation/bin/x86_64-w64-mingw32-g++: cannot execute binary file: Exec format error

誰かが私に良いmingwツールチェーンを指し示すか、この問題を解決するための提案をすることができますか?

2
Shrikant

Mach-O 実行可能形式は、Ubuntuでは使用またはサポートされていません。 Ubuntu(および一般的なLinux)の標準実行形式は ELF です。

mingw32 パッケージをインストールします。

Sudo apt-get install mingw32

this SO answer も参照してください。)

3
muru