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 b161f2a commit 0f45c09Copy full SHA for 0f45c09
recipe/build.sh
@@ -34,6 +34,9 @@ export CXXFLAGS="$(echo $CXXFLAGS | sed 's/-std=c++[0-9][0-9]//g')"
34
# break users' programs
35
export CFLAGS="$(echo $CFLAGS | sed 's/-fvisibility-inlines-hidden//g')"
36
export CXXFLAGS="$(echo $CXXFLAGS | sed 's/-fvisibility-inlines-hidden//g')"
37
+# ignore warnings; blows up the logs for no benefit; they need to be fixed upstream
38
+export CXXFLAGS="$CXXFLAGS -w"
39
+
40
export LDFLAGS="$(echo $LDFLAGS | sed 's/-Wl,--as-needed//g')"
41
# The default conda LDFLAGs include -Wl,-dead_strip_dylibs, which removes all the
42
# MKL sequential, core, etc. libraries, resulting in a "Symbol not found: _mkl_blas_caxpy"
0 commit comments