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 513bb7c commit eac91a1Copy full SHA for eac91a1
opt/build/onnxruntime/Dockerfile.x64
@@ -28,7 +28,7 @@ RUN apt-get install -y locales && \
28
WORKDIR /build
29
30
ADD ./pack.sh /build/
31
-ARG BUILDTYPE=MinSizeRel
+ARG BUILDTYPE=RelWithDebInfo
32
ARG BUILDARGS="--config ${BUILDTYPE} --parallel"
33
34
RUN git clone --single-branch --branch rel-${ONNXRUNTIME_VER} --recursive ${ONNXRUNTIME_REPO} onnxruntime
opt/build/onnxruntime/pack.sh
@@ -5,7 +5,7 @@ VER="$1"
5
PLATFORM="$2"
6
7
mkdir -p pack/include pack/lib
8
-cp onnxruntime/build/Linux/MinSizeRel/libonnxruntime.so.${VER} pack/lib/
+cp onnxruntime/build/Linux/RelWithDebInfo/libonnxruntime.so.${VER} pack/lib/
9
cp onnxruntime/docs/C_API.md pack/
10
cp onnxruntime/LICENSE pack/
11
cp onnxruntime/README.md pack/
0 commit comments