WIP fix xapian winbash

This commit is contained in:
Matthieu Gautier 2024-04-30 15:25:56 +02:00
parent dbf98f2c70
commit c59ace0e5a
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ class WinBashConfigInfo(ConfigInfo):
return sysconfig.get_platform() return sysconfig.get_platform()
@property @property
def config_wrapper(self): def configure_wrapper(self):
yield "C:\\Program Files\\Git\\bin\\bash.exe" yield "C:\\Program Files\\Git\\bin\\bash.exe"
@property @property

View File

@ -20,7 +20,7 @@ class Xapian(Dependency):
compile_script = self.source_path / "compile" compile_script = self.source_path / "compile"
return [ return [
'CC="cl -nologo"', 'CC="cl -nologo"',
'CXX=f"{compile_script} cl -nologo"', f'CXX="{compile_script} cl -nologo"',
"CXXFLAGS=-EHsc", "CXXFLAGS=-EHsc",
"AR=lib", "AR=lib",
] ]