OS X에서 스캔을 제출하려고합니다. procedure I am following은 32 비트 및 64 비트 Linux에서 잘 작동하며 유사한 절차가 nmake
.스캔 서비스 및 "이 플랫폼은 Coverity에서 지원하지 않습니다."
$ CXXFLAGS="-DNDEBUG -g2 -O3" cov-build --dir cov-int make -j 2
Coverity Build Capture (64-bit) version 8.5.0.3 on Darwin 13.4.0 x86_64
Internal version numbers: db70178643 p-kent-push-26368.949
Platform info:
Sysname = Darwin
Release = 13.4.0
Machine = x86_64
[ERROR] This platform is not supported by Coverity.
[ERROR] See documentation for the list of supported platforms.
나는 문서의 위치를하는 데 문제 :
$ cov-build --help
Coverity Build Capture (64-bit) version 8.5.0.3 on Darwin 12.6.0 x86_64
Internal version numbers: db70178643 p-kent-push-26368.949
No help found for 'cov-build'
이
$ CXXFLAGS="-DNDEBUG -g2 -O3" cov-build --dir cov-int make -j 2
Coverity Build Capture (64-bit) version 8.5.0.3 on Darwin 12.6.0 x86_64
Internal version numbers: db70178643 p-kent-push-26368.949
Platform info:
Sysname = Darwin
Release = 12.6.0
Machine = x86_64
[ERROR] This platform is not supported by Coverity.
[ERROR] See documentation for the list of supported platforms.
다른 OS X의 시스템이 같은 오류가 발생 : OS의 X에 cov-build
함께 실패 OS X가 지원되며 press release states OS X 10.8 is supported입니다.
- AIX
- FreeBSD의
- HP-UX
- 리눅스
- 맥 OS X
- NetBSD의
- 솔라리스
- 윈도우
왜 내가 받습니까 [ERROR] This platform is not supported by Coverity
, 그리고 어떻게 수정합니까?
'COVERITY_UNSUPPORTED = 1로 내보내기 '를 시도해 볼 가치가 있습니다. –