1

VS2005をデバッグモードで使用しているときにRaspberry PI3にシンプルなPythonアプリケーションをデプロイしようとしていますが、いくつか問題があります。 次の警告メッセージが表示され、解決方法がわかりません。Raspberry Win 10 IoT Python PDBファイルが見つかりません

'backgroundTaskHost.exe' (Win32): Loaded 'C:\Windows\System32\mswsock.dll'. Cannot find or open the PDB file. 
'backgroundTaskHost.exe' (Win32): Loaded 'U:\Users\DefaultAccount\AppData\Local\DevelopmentFiles\Test7VS.Debug_ARM.stan\pythonhome\dlls\_ptvsdhelper.pyd'. Cannot find or open the PDB file. 
'backgroundTaskHost.exe' (Win32): Loaded 'C:\Windows\System32\nlaapi.dll'. Cannot find or open the PDB file. 
'backgroundTaskHost.exe' (Win32): Loaded 'C:\Windows\System32\dnsapi.dll'. Cannot find or open the PDB file. 
'backgroundTaskHost.exe' (Win32): Loaded 'C:\Windows\System32\nsi.dll'. Cannot find or open the PDB file. 
'backgroundTaskHost.exe' (Win32): Loaded 'C:\Windows\System32\IPHLPAPI.DLL'. Cannot find or open the PDB file. 
'backgroundTaskHost.exe' (Win32): Loaded 'C:\Windows\System32\wshbth.dll'. Cannot find or open the PDB file. 
The program '[916] backgroundTaskHost.exe' has exited with code 0 (0x0). 

ヘルプがありますか?

答えて

0

バックグラウンドタスクの終了コードが「0x0」で、正常に動作していることを示します。

デバッグモードでアプリケーションを起動すると、デバッガがデバッグシンボルのパスに見つからないデバッグシンボルファイル(pdbファイル)を見つけようとしているため、警告のエラーは問題になりません。

このような警告に悩まされないでください。しかし、実際にWindowsカーネルのデバッグシンボルサーバーを接続し、VSまたはwindbgに接続する方法を尋ねてください。

StartupTask.pyファイルにブレークポイントを設定して、実際にヒットできるかどうかを確認してください。

関連する問題