2016-03-03 23:43:03 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
Script to build the shaderc library.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
import shlex
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description='Builds shaderc')
|
|
|
|
parser.add_argument('-s', '--src-dir', required=True, help=
|
|
|
|
'path to shaderc source')
|
|
|
|
parser.add_argument('-t', '--build-type', required=True, help=
|
|
|
|
'Either Release or Debug')
|
|
|
|
parser.add_argument('-a', '--arch-type', required=True, help=
|
|
|
|
'Either x86 or x86_64')
|
|
|
|
parser.add_argument('-o', '--output-dir', required=True, help=
|
|
|
|
'Directory for cmake build')
|
|
|
|
parser.add_argument('-p', '--project_type', required=True, help=
|
|
|
|
'Project type to use. Must be "ninja", "MSVS2013", or "MSVS2015"')
|
2016-04-21 14:59:44 +00:00
|
|
|
parser.add_argument('-c', '--android_toolchain', required=False, help=
|
|
|
|
'Location of standalone android toolchain to use for crosscompiling')
|
2016-03-03 23:43:03 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
args.src_dir = os.path.abspath(args.src_dir)
|
|
|
|
args.output_dir = os.path.abspath(args.output_dir)
|
|
|
|
|
|
|
|
if not os.path.isdir(args.src_dir):
|
|
|
|
sys.exit(args.src_dir + ' is not a directory.')
|
2016-04-13 15:02:42 +00:00
|
|
|
|
|
|
|
if 'Release' in args.build_type:
|
|
|
|
args.build_type = "Release"
|
|
|
|
elif 'Debug' in args.build_type:
|
|
|
|
args.build_type = "Debug"
|
|
|
|
else:
|
|
|
|
args.exit('Invalid build type: ' + args.build_type);
|
2016-03-03 23:43:03 +00:00
|
|
|
|
2016-04-21 14:59:44 +00:00
|
|
|
vs_arch = ''
|
|
|
|
if args.arch_type == 'x86_64':
|
2016-03-03 23:43:03 +00:00
|
|
|
vs_arch = ' Win64'
|
|
|
|
|
|
|
|
if args.project_type == 'ninja':
|
|
|
|
generator = 'Ninja'
|
|
|
|
elif args.project_type == 'MSVS2013':
|
|
|
|
generator = 'Visual Studio 12 2013' + vs_arch
|
|
|
|
elif args.project_type == "MSVS2015":
|
|
|
|
generator = 'Visual Studio 14 2015' + vs_arch
|
|
|
|
else:
|
|
|
|
sys.exit('Invalid project type: ' + args.project_type);
|
|
|
|
|
2016-04-13 15:02:42 +00:00
|
|
|
if os.path.isdir(args.output_dir):
|
|
|
|
shutil.rmtree(args.output_dir)
|
|
|
|
|
|
|
|
try:
|
|
|
|
os.makedirs(args.output_dir)
|
|
|
|
except os.error:
|
|
|
|
sys.exit('Error creating output dir ' + args.output_dir)
|
2016-03-03 23:43:03 +00:00
|
|
|
|
|
|
|
try:
|
2016-04-01 15:40:55 +00:00
|
|
|
build_type_arg='-DCMAKE_BUILD_TYPE=' + args.build_type
|
2016-04-21 14:59:44 +00:00
|
|
|
cmake_cmd = ['cmake', '-G', generator,
|
|
|
|
'-DSPIRV_SKIP_EXECUTABLES=ON',
|
|
|
|
'-DSHADERC_ENABLE_SHARED_CRT=ON']
|
|
|
|
if args.android_toolchain and args.android_toolchain.strip() :
|
2016-04-29 15:09:43 +00:00
|
|
|
cmake_cmd.append('-DCMAKE_TOOLCHAIN_FILE=' +\
|
|
|
|
os.environ['ANDROID_SDK_ROOT'] +\
|
|
|
|
'/cmake/android.toolchain.cmake')
|
2016-04-21 14:59:44 +00:00
|
|
|
cmake_cmd.append('-DANDROID_TOOLCHAIN_NAME=standalone-clang')
|
|
|
|
cmake_cmd.append('-DANDROID_STANDALONE_TOOLCHAIN=' +\
|
|
|
|
os.path.abspath(args.android_toolchain))
|
|
|
|
cmake_cmd.extend([build_type_arg, args.src_dir])
|
|
|
|
subprocess.check_call(cmake_cmd, cwd=args.output_dir)
|
2016-03-03 23:43:03 +00:00
|
|
|
except subprocess.CalledProcessError as error:
|
|
|
|
sys.exit('Error (ret code: {code}) calling "{cmd}" in {dir}'.format(
|
|
|
|
code = error.returncode, cmd = error.cmd, dir = args.src_dir))
|
|
|
|
|
|
|
|
try:
|
|
|
|
subprocess.check_call(['cmake', '--build', args.output_dir, '--config',
|
|
|
|
args.build_type], cwd=args.output_dir)
|
|
|
|
except subprocess.CalledProcessError as error:
|
|
|
|
sys.exit('Error (ret code: {code}) calling "{cmd}" in {dir}'.format(
|
|
|
|
code = error.returncode, cmd = error.cmd, dir = args.src_dir))
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|