我为我的linux(ubuntu 14.04 32位)机器构建了webrtc。我遵循建立webrtc的方式如下。
1,下载并设置depot_tools和java。
2,获取webrtc。
3,build / install-build-deps.sh。
4,导出GYP_GENERATORS = make。
5,gclient runhooks --force(也尝试python src / webrtc / build / gyp_webrtc)。
6,make。
当make命令执行完成后,会发生一些代码跟踪错误。
LINK(host) out/Debug/protoc
TOUCH webrtc_modules_modules_gyp_audioproc_debug_proto_target_genproto_0.intermediate
RULE webrtc_modules_modules_gyp_audioproc_debug_proto_target_genproto_0
webrtc_modules_modules_gyp_audioproc_debug_proto_target_genproto_0.intermediate
Traceback (most recent call last):
File "../../tools/protoc_wrapper/protoc_wrapper.py", line 134, in <module>
sys.exit(main(sys.argv))
File "../../tools/protoc_wrapper/protoc_wrapper.py", line 119, in main
ret = subprocess.call(protoc_args)
File "/usr/lib/python2.7/subprocess.py", line 522, in call
return Popen(*popenargs, **kwargs).wait()
File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
make: *** [webrtc_modules_modules_gyp_audioproc_debug_proto_target_genproto_0.intermediate]
Error 1
rm webrtc_modules_modules_gyp_audioproc_debug_proto_target_genproto_0.intermediate.
你知道为什么?以及如何解决这个问题?