1 # -*- coding: utf-8 -*-
3 #-------------------------------------------------------------------------
4 # drawElements Quality Program utilities
5 # --------------------------------------
7 # Copyright 2015 The Android Open Source Project
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
13 # http://www.apache.org/licenses/LICENSE-2.0
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
21 #-------------------------------------------------------------------------
24 from build.common import *
25 from build.build import *
26 from argparse import ArgumentParser
27 import multiprocessing
28 from build_android_mustpass import *
30 class LaunchControlConfig:
31 def __init__ (self, buildArgs, checkMustpassLists):
32 self.buildArgs = buildArgs
33 self.checkMustpassLists = checkMustpassLists
35 def getBuildArgs (self):
38 def getCheckMustpassLists (self):
39 return self.checkMustpassLists
41 # This is a bit silly, but CMake needs to know the word width prior to
42 # parsing the project files, hence cannot use our own defines.
43 X86_64_ARGS = ["-DDE_CPU=DE_CPU_X86_64", "-DCMAKE_C_FLAGS=-m64", "-DCMAKE_CXX_FLAGS=-m64"]
46 "gcc-x86_64-x11_glx": LaunchControlConfig(X86_64_ARGS + ["-DDEQP_TARGET=x11_glx"], False),
47 "clang-x86_64-x11_glx": LaunchControlConfig(X86_64_ARGS + ["-DDEQP_TARGET=x11_glx", "-DCMAKE_C_COMPILER=clang", "-DCMAKE_CXX_COMPILER=clang++"], False),
48 "gcc-x86_64-null": LaunchControlConfig(X86_64_ARGS + ["-DDEQP_TARGET=null"], True)
51 def buildWithMake (workingDir):
52 pushWorkingDir(workingDir)
53 # CMake docs advised this to be the best magic formula...
54 threadCount = multiprocessing.cpu_count() + 1
55 print "Invoke make with %d threads" % threadCount
56 execute(["make", "-j%d" % threadCount])
59 def checkForChanges ():
60 pushWorkingDir(DEQP_DIR)
61 # If there are changed files, exit code will be non-zero and the script terminates immediately.
62 execute(["git", "diff", "--exit-code"])
66 parser = ArgumentParser()
68 parser.add_argument("-d",
72 help="Temporary build directory")
73 parser.add_argument("-c",
76 choices=BUILD_CONFIGS.keys(),
78 help="Build configuration name")
79 parser.add_argument("-t",
82 choices=["Debug", "Release"],
85 return parser.parse_args()
87 if __name__ == "__main__":
88 options = parseOptions()
90 print "\n############################################################"
91 print "# %s %s BUILD" % (options.config.upper(), options.buildType.upper())
92 print "############################################################\n"
94 launchControlConfig = BUILD_CONFIGS[options.config]
95 buildDir = os.path.realpath(os.path.normpath(options.buildDir))
96 config = BuildConfig(buildDir, options.buildType, launchControlConfig.getBuildArgs())
97 initBuildDir(config, MAKEFILE_GENERATOR)
98 buildWithMake(buildDir)
100 if launchControlConfig.getCheckMustpassLists():
101 genMustpassLists(MUSTPASS_LISTS, MAKEFILE_GENERATOR, config)
104 print "\n--- BUILD SCRIPT COMPLETE"