Home | History | Annotate | Download | only in jsoncpp

Lines Matching refs:platform

6 python makerelease.py --platform=msvc6,msvc71,msvc80,msvc90,mingw -ublep 0.6.0 0.7.0-dev
9 python makerelease.py --force --retag --platform=msvc6,msvc71,msvc80,mingw -ublep test-0.6.0 test-0.6.1-dev
150 def check_compile( distcheck_top_dir, platform ):
151 cmd = [sys.executable, 'scons.py', 'platform=%s' % platform, 'check']
153 log_path = os.path.join( distcheck_top_dir, 'build-%s.log' % platform )
276 help="""Comma separated list of platform passed to scons for build check.""")
294 parser.error( 'You must specify either --platform or --no-test option.' )
353 for platform in options.platforms.split(','):
354 print('Testing platform:', platform)
355 build_status, log_path = check_compile( distcheck_top_dir, platform )
360 print('Testing failed on at least one platform, aborting...')