WIP fix xapian winbash
This commit is contained in:
parent
dbf98f2c70
commit
c59ace0e5a
|
@ -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
|
||||||
|
|
|
@ -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",
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue