52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
import os
|
|
import subprocess
|
|
|
|
from .base_toolchain import Toolchain
|
|
from kiwixbuild.utils import which
|
|
|
|
pj = os.path.join
|
|
|
|
class mingw32_toolchain(Toolchain):
|
|
name = 'mingw32'
|
|
arch_full = 'i686-w64-mingw32'
|
|
|
|
@property
|
|
def root_path(self):
|
|
return self.buildEnv.cross_config['root_path']
|
|
|
|
@property
|
|
def binaries(self):
|
|
return {k:which('{}-{}'.format(self.arch_full, v))
|
|
for k, v in (('CC', 'gcc'),
|
|
('CXX', 'g++'),
|
|
('AR', 'ar'),
|
|
('STRIP', 'strip'),
|
|
('WINDRES', 'windres'),
|
|
('RANLIB', 'ranlib'))
|
|
}
|
|
|
|
@property
|
|
def exec_wrapper_def(self):
|
|
try:
|
|
which('wine')
|
|
except subprocess.CalledProcessError:
|
|
return ""
|
|
else:
|
|
return "exec_wrapper = 'wine'"
|
|
|
|
|
|
@property
|
|
def configure_option(self):
|
|
return '--host={}'.format(self.arch_full)
|
|
|
|
def get_bin_dir(self):
|
|
return [pj(self.root_path, 'bin')]
|
|
|
|
def set_env(self, env):
|
|
env['PKG_CONFIG_LIBDIR'] = pj(self.root_path, 'lib', 'pkgconfig')
|
|
env['LIBS'] = " ".join(self.buildEnv.cross_config['extra_libs']) + " " +env['LIBS']
|
|
|
|
def set_compiler(self, env):
|
|
for k, v in self.binaries.items():
|
|
env[k] = v
|