diff options
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 71f75f9..f1145e5 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -1215,11 +1215,6 @@ class CrossBuildInfo: def get_sys_root(self): return self.get_properties().get('sys_root', None) - # When compiling a cross compiler we use the native compiler for everything. - # But not when cross compiling a cross compiler. - def need_cross_compiler(self): - return 'host_machine' in self.config - def need_exe_wrapper(self): value = self.config['properties'].get('needs_exe_wrapper', None) if value is not None: |