|
|
|
# Copyright 2012-2017 The Meson development team
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
import os.path, subprocess
|
|
|
|
|
|
|
|
from ..mesonlib import EnvironmentException
|
|
|
|
from ..mesonlib import is_windows
|
|
|
|
|
|
|
|
from .compilers import Compiler, mono_buildtype_args
|
|
|
|
|
|
|
|
cs_optimization_args = {'0': [],
|
|
|
|
'g': [],
|
|
|
|
'1': ['-optimize+'],
|
|
|
|
'2': ['-optimize+'],
|
|
|
|
'3': ['-optimize+'],
|
|
|
|
's': ['-optimize+'],
|
|
|
|
}
|
|
|
|
|
|
|
|
class CsCompiler(Compiler):
|
|
|
|
def __init__(self, exelist, version, id, runner=None):
|
|
|
|
self.language = 'cs'
|
|
|
|
super().__init__(exelist, version)
|
|
|
|
self.id = id
|
|
|
|
self.runner = runner
|
|
|
|
|
|
|
|
def get_display_language(self):
|
|
|
|
return 'C sharp'
|
|
|
|
|
|
|
|
def get_always_args(self):
|
|
|
|
return ['/nologo']
|
|
|
|
|
|
|
|
def get_linker_always_args(self):
|
|
|
|
return ['/nologo']
|
|
|
|
|
|
|
|
def get_output_args(self, fname):
|
|
|
|
return ['-out:' + fname]
|
|
|
|
|
|
|
|
def get_link_args(self, fname):
|
|
|
|
return ['-r:' + fname]
|
|
|
|
|
macos: Rewrite install_name for dependent built libraries on install
On macOS, we set the install_name for built libraries to
@rpath/libfoo.dylib, and when linking to the library, we set the RPATH
to its path in the build directory. This allows all built binaries to
be run as-is from the build directory (uninstalled).
However, on install, we have to strip all the RPATHs because they
point to the build directory, and we change the install_name of all
built libraries to the absolute path to the library. This causes the
install name in binaries to be out of date.
We now change that install name to point to the absolute path to each
built library after installation.
Fixes https://github.com/mesonbuild/meson/issues/3038
Fixes https://github.com/mesonbuild/meson/issues/3077
With this, the default workflow on macOS matches what everyone seems
to do, including Autotools and CMake. The next step is providing a way
for build files to override the install_name that is used after
installation for use with, f.ex., private libraries when combined with
the install_rpath: kwarg on targets.
7 years ago
|
|
|
def get_soname_args(self, *args):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_werror_args(self):
|
|
|
|
return ['-warnaserror']
|
|
|
|
|
|
|
|
def split_shlib_to_parts(self, fname):
|
|
|
|
return None, fname
|
|
|
|
|
|
|
|
def build_rpath_args(self, build_dir, from_dir, rpath_paths, build_rpath, install_rpath):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_dependency_gen_args(self, outtarget, outfile):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_linker_exelist(self):
|
|
|
|
return self.exelist[:]
|
|
|
|
|
|
|
|
def get_compile_only_args(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_linker_output_args(self, outputname):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_coverage_args(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_coverage_link_args(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_std_exe_link_args(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_include_args(self, path):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_pic_args(self):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def name_string(self):
|
|
|
|
return ' '.join(self.exelist)
|
|
|
|
|
|
|
|
def get_pch_use_args(self, pch_dir, header):
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_pch_name(self, header_name):
|
|
|
|
return ''
|
|
|
|
|
|
|
|
def sanity_check(self, work_dir, environment):
|
|
|
|
src = 'sanity.cs'
|
|
|
|
obj = 'sanity.exe'
|
|
|
|
source_name = os.path.join(work_dir, src)
|
|
|
|
with open(source_name, 'w') as ofile:
|
|
|
|
ofile.write('''public class Sanity {
|
|
|
|
static public void Main () {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
''')
|
|
|
|
pc = subprocess.Popen(self.exelist + self.get_always_args() + [src], cwd=work_dir)
|
|
|
|
pc.wait()
|
|
|
|
if pc.returncode != 0:
|
|
|
|
raise EnvironmentException('Mono compiler %s can not compile programs.' % self.name_string())
|
|
|
|
if self.runner:
|
|
|
|
cmdlist = [self.runner, obj]
|
|
|
|
else:
|
|
|
|
cmdlist = [os.path.join(work_dir, obj)]
|
|
|
|
pe = subprocess.Popen(cmdlist, cwd=work_dir)
|
|
|
|
pe.wait()
|
|
|
|
if pe.returncode != 0:
|
|
|
|
raise EnvironmentException('Executables created by Mono compiler %s are not runnable.' % self.name_string())
|
|
|
|
|
|
|
|
def needs_static_linker(self):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def get_buildtype_args(self, buildtype):
|
|
|
|
return mono_buildtype_args[buildtype]
|
|
|
|
|
|
|
|
def get_debug_args(self, is_debug):
|
|
|
|
return ['-debug'] if is_debug else []
|
|
|
|
|
|
|
|
def get_optimization_args(self, optimization_level):
|
|
|
|
return cs_optimization_args[optimization_level]
|
|
|
|
|
|
|
|
class MonoCompiler(CsCompiler):
|
|
|
|
def __init__(self, exelist, version):
|
|
|
|
super().__init__(exelist, version, 'mono',
|
|
|
|
'mono')
|
|
|
|
|
|
|
|
|
|
|
|
class VisualStudioCsCompiler(CsCompiler):
|
|
|
|
def __init__(self, exelist, version):
|
|
|
|
super().__init__(exelist, version, 'csc')
|
|
|
|
|
|
|
|
def get_buildtype_args(self, buildtype):
|
|
|
|
res = mono_buildtype_args[buildtype]
|
|
|
|
if not is_windows():
|
|
|
|
tmp = []
|
|
|
|
for flag in res:
|
|
|
|
if flag == '-debug':
|
|
|
|
flag = '-debug:portable'
|
|
|
|
tmp.append(flag)
|
|
|
|
res = tmp
|
|
|
|
return res
|