We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46f09bb commit f09c967Copy full SHA for f09c967
conda-recipe/build.sh
@@ -5,6 +5,12 @@ if [[ "$(uname)" == Darwin && "$PY_VER" == 2.6 ]]; then
5
LDFLAGS="${LDFLAGS} -lstdc++"
6
fi
7
8
+# Produce stripped binaries on Linux.
9
+if [[ "$(uname)" == Linux ]]; then
10
+ # conda-build does not set LDFLAGS on Linux.
11
+ export LDFLAGS="-s"
12
+fi
13
+
14
$PYTHON setup.py install
15
16
# Add more build steps here, if they are necessary.
0 commit comments