meson/meson.py

151 lines
6.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2012-12-26 21:39:17 +08:00
# Copyright 2012 Jussi Pakkanen
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from optparse import OptionParser
import sys, stat, traceback
2012-12-26 22:06:49 +08:00
import os.path
2013-01-02 00:03:30 +08:00
import environment, interpreter
2013-02-24 01:42:18 +08:00
import backends, build
2013-07-09 01:47:55 +08:00
import mlog, coredata
2012-12-26 21:39:17 +08:00
from coredata import version, MesonException
2013-02-10 20:54:58 +08:00
2013-02-10 20:40:24 +08:00
usage_info = '%prog [options] source_dir build_dir'
2013-02-10 20:54:58 +08:00
parser = OptionParser(usage=usage_info, version=version)
2012-12-26 21:39:17 +08:00
build_types = ['plain', 'debug', 'optimized']
buildtype_help = 'build type, one of: %s' % ', '.join(build_types)
buildtype_help += ' (default: %default)'
2013-03-09 00:43:30 +08:00
if environment.is_windows():
def_prefix = 'c:/'
else:
def_prefix = '/usr/local'
parser.add_option('--prefix', default=def_prefix, dest='prefix',
2013-02-10 20:47:09 +08:00
help='the installation prefix (default: %default)')
parser.add_option('--libdir', default='lib', dest='libdir',
help='the installation subdir of libraries (default: %default)')
parser.add_option('--bindir', default='bin', dest='bindir',
help='the installation subdir of executables (default: %default)')
parser.add_option('--includedir', default='include', dest='includedir',
help='relative path of installed headers (default: %default)')
parser.add_option('--datadir', default='share', dest='datadir',
help='relative path to the top of data file subdirectory (default: %default)')
parser.add_option('--mandir' , default='share/man', dest='mandir',
help='relatie path of man files (default: %default)')
parser.add_option('--backend', default='ninja', dest='backend',
help='the backend to use (default: %default)')
parser.add_option('--buildtype', default='debug', type='choice', choices=build_types, dest='buildtype',
help=buildtype_help)
parser.add_option('--strip', action='store_true', dest='strip', default=False,\
help='strip targets on install (default: %default)')
2013-02-21 06:36:28 +08:00
parser.add_option('--enable-gcov', action='store_true', dest='coverage', default=False,\
help='measure test coverage')
parser.add_option('--cross-file', default=None, dest='cross_file',
help='file describing cross compilation environment')
2012-12-26 21:39:17 +08:00
2013-02-23 19:24:41 +08:00
class MesonApp():
def __init__(self, dir1, dir2, script_file, options):
2012-12-26 22:06:49 +08:00
(self.source_dir, self.build_dir) = self.validate_dirs(dir1, dir2)
2013-03-09 00:43:30 +08:00
if not os.path.isabs(options.prefix):
2013-01-12 08:25:06 +08:00
raise RuntimeError('--prefix must be an absolute path.')
2013-02-23 19:24:41 +08:00
self.meson_script_file = script_file
2013-01-02 01:52:58 +08:00
self.options = options
2012-12-26 22:06:49 +08:00
2013-02-23 19:24:41 +08:00
def has_build_file(self, dirname):
fname = os.path.join(dirname, environment.build_filename)
2012-12-26 22:06:49 +08:00
try:
ifile = open(fname, 'r')
2012-12-26 22:07:52 +08:00
ifile.close()
2012-12-26 22:06:49 +08:00
return True
except IOError:
return False
def validate_dirs(self, dir1, dir2):
ndir1 = os.path.abspath(dir1)
ndir2 = os.path.abspath(dir2)
if not stat.S_ISDIR(os.stat(ndir1).st_mode):
raise RuntimeError('%s is not a directory' % dir1)
if not stat.S_ISDIR(os.stat(ndir2).st_mode):
raise RuntimeError('%s is not a directory' % dir2)
self.options = options
2012-12-26 22:47:36 +08:00
if os.path.samefile(dir1, dir2):
2012-12-26 22:06:49 +08:00
raise RuntimeError('Source and build directories must not be the same. Create a pristine build directory.')
2013-02-23 19:24:41 +08:00
if self.has_build_file(ndir1):
if self.has_build_file(ndir2):
raise RuntimeError('Both directories contain a build file %s.' % environment.build_filename)
2012-12-26 22:06:49 +08:00
return (ndir1, ndir2)
2013-02-23 19:24:41 +08:00
if self.has_build_file(ndir2):
2012-12-26 22:06:49 +08:00
return (ndir2, ndir1)
2013-02-23 19:24:41 +08:00
raise RuntimeError('Neither directory contains a build file %s.' % environment.build_filename)
2013-01-02 00:03:30 +08:00
def generate(self):
2013-02-23 19:24:41 +08:00
env = environment.Environment(self.source_dir, self.build_dir, self.meson_script_file, options)
2013-07-09 01:04:02 +08:00
mlog.initialize(env.get_log_dir())
2013-07-09 01:47:55 +08:00
mlog.log(mlog.bold('The Meson build system'))
mlog.log(' version:', coredata.version)
2013-07-09 02:02:47 +08:00
mlog.log('Source dir:', mlog.bold(app.source_dir))
mlog.log('Build dir:', mlog.bold(app.build_dir))
if env.is_cross_build():
mlog.log('Build type:', mlog.bold('cross build'))
else:
mlog.log('Build type:', mlog.bold('native build'))
2013-01-12 04:59:49 +08:00
b = build.Build(env)
intr = interpreter.Interpreter(b)
2013-01-12 04:59:49 +08:00
intr.run()
2013-04-01 18:42:30 +08:00
if options.backend == 'ninja':
2013-02-24 01:42:18 +08:00
g = backends.NinjaBackend(b, intr)
2013-02-07 01:45:23 +08:00
else:
2013-04-01 18:42:30 +08:00
raise RuntimeError('Unknown backend "%s".' % options.backend)
2013-01-02 00:03:30 +08:00
g.generate()
2013-02-25 04:44:01 +08:00
env.generating_finished()
2012-12-26 22:06:49 +08:00
2012-12-26 21:39:17 +08:00
if __name__ == '__main__':
(options, args) = parser.parse_args(sys.argv)
if len(args) == 1 or len(args) > 3:
2013-02-04 01:21:10 +08:00
print('%s <source directory> <build directory>' % sys.argv[0])
print('If you omit either directory, the current directory is substituted.')
2012-12-26 22:06:49 +08:00
sys.exit(1)
dir1 = args[1]
if len(args) > 2:
dir2 = args[2]
else:
dir2 = '.'
this_file = os.path.abspath(__file__)
while os.path.islink(this_file):
resolved = os.readlink(this_file)
if resolved[0] != '/':
this_file = os.path.join(os.path.dirname(this_file), resolved)
else:
this_file = resolved
2013-02-23 19:24:41 +08:00
app = MesonApp(dir1, dir2, this_file, options)
try:
app.generate()
except Exception as e:
if isinstance(e, MesonException):
2013-06-02 20:33:59 +08:00
if hasattr(e, 'file') and hasattr(e, 'lineno'):
mlog.log(mlog.red('\nMeson encountered an error in %s:%d:' % (e.file, e.lineno)))
2013-06-02 20:33:59 +08:00
else:
mlog.log(mlog.red('\nMeson encountered an error:'))
mlog.log(e)
else:
traceback.print_exc()
sys.exit(1)
2013-01-02 00:03:30 +08:00