We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75e5231 commit 73d3282Copy full SHA for 73d3282
setup.py
@@ -281,7 +281,13 @@ def _get_manifest(self, build_dir):
281
return manifest
282
283
def _build_monoclr(self):
284
- mono_libs = _check_output("pkg-config --libs mono-2", shell=True)
+ try:
285
+ mono_libs = _check_output("pkg-config --libs mono-2", shell=True)
286
+ except:
287
+ if DEVTOOLS == "dotnet":
288
+ print("Skipping building monoclr module...")
289
+ return
290
+ raise
291
mono_cflags = _check_output("pkg-config --cflags mono-2", shell=True)
292
glib_libs = _check_output("pkg-config --libs glib-2.0", shell=True)
293
glib_cflags = _check_output("pkg-config --cflags glib-2.0", shell=True)
0 commit comments