0

これは私が得ている出力であり、

'abc.exe': Loaded 'C:\Windows\system\glut32.dll', Binary was not built with debug information. '

'abc.exe': Loaded 'C:\Windows\System32\glew32.dll', Binary was not built with debug information.

The thread 'Win32 Thread' (0x1710) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x16a0) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x1770) has exited with code 0 (0x0).
The thread 'Win32 Thread' (0x1708) has exited with code 1 (0x1).
The thread 'Win32 Thread' (0x1778) has exited with code 1 (0x1).
The program '[600] abc.exe: Native' has exited with code 1 (0x1).
これを修正する方法について何か考えはありますか?

VS2008 VS2010 でも同じことを試しました。ほぼ同じ結果になります。バイナリを強制的にビルドするにはどうすればよいですか? 正しいプロジェクト オプションが見つかりません。どうもありがとうございました。

-エゴン

4

1 に答える 1

0

あなたはそうしない。デバッグ情報を使用して既にビルドされているdllファイルが必要か、外部デバッグ情報へのリンクが必要です(glu32およびglew32の準備ができているとは思えません)。あなたが持っているものはエラーではないので、そのように扱われるべきではありません。代わりに、glutとglewのソースファイルがある場合、それらの警告は存在しなくなります。

于 2011-02-12T15:17:32.677 に答える