Skip to content

Commit cad112f

Browse files
Fixed linker issues in stubs generation
1 parent 43898ea commit cad112f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

docker/build/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ LABEL maintainer="Tim Schneider <tim@robot-learning.de>"
44

55
RUN yum -y install zip boost-devel urdfdom-devel fmt-devel gcc-c++ openssl-devel mysql-devel postgresql-devel
66

7-
ENV LD_LIBRARY_PATH="/usr/local/lib64"
8-
97
ADD docker/common/ /tmp/common/
108
ARG LIBFRANKA_VERSION
119
RUN /tmp/common/install-dependencies

docker/common/manylinux-build-wheels

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
export LD_LIBRARY_PATH="/usr/local/lib64" # For whatever reason, this has to be set manually
4+
export LD_LIBRARY_PATH="/usr/local/lib64:/usr/local/lib" # For whatever reason, this has to be set manually
55

66
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
77
. "${SCRIPT_DIR}/dependency_versions"

0 commit comments

Comments
 (0)