質問

Googleのブレークパッドを構築する方法に完全に迷っています。 SLNファイルはありますが、関連するSLNを持っていないように見えるライブラリに依存します。それは私が仕事をする方法を理解していないGYPと呼ばれるものを使用しているようです。私は試した

 python gyp  ..\breakpad\src\client\windows\breakpad_client.gyp

そして、それはただ次のエラーを与えます

Traceback (most recent call last):
File "gyp", line 18, in <module>
sys.exit(gyp.main(sys.argv[1:]))
 File "pylib\gyp\__init__.py", line 445, in main
options.circular_check)
 File "pylib\gyp\__init__.py", line 84, in Load
depth, generator_input_info, check, circular_check)
 File "pylib\gyp\input.py", line 2165, in Load
VerifyNoGYPFileCircularDependencies(targets)
 File "pylib\gyp\input.py", line 1429, in VerifyNoGYPFileCircularDependencies
' '.join(bad_files)
gyp.input.CircularException: Some files not reachable, cycle in .gyp file dependency     
graph detected involving some or all of:   
..\breakpad\src\client\windows\sender\crash_report_sender.gyp   
..\breakpad\src\client\windows\h
andler\exception_handler.gyp ..\breakpad\src\client\windows\breakpad_client.gyp           
..\breakpad\src\client\windows\unittests\client_tests.gyp   
..\breakpad\src\client\windows\crash_generation\crash_generation.gyp

私は意味がありません。また、ドキュメントを見つけることができないようです。どんな助けも感謝します。

役に立ちましたか?

解決

GYPへのコマンドラインオプションを確認する必要があります。同じ問題がありました。解決策は、以下を実行することです。

gyp --no-circular-check /path/to/build/file
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top