You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't gotten it to work yet. Compiled Cbc @ master using the following Dockerfile:
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install --yes git wget locales build-essential pkg-config
RUN locale-gen en_US.UTF-8
RUN dpkg-reconfigure locales
WORKDIR /work
RUN wget https://raw.githubusercontent.com/coin-or/coinbrew/master/coinbrew && chmod +x ./coinbrew
RUN git config --global advice.detachedHead false
RUN ./coinbrew fetch Cbc@master
RUN ls -ahl
RUN ./coinbrew build --verbosity 2 Cbc
ENV LD_LIBRARY_PATH=/work/dist/lib
RUN wget -q -O - https://sh.rustup.rs | sh -s -- -y
RUN . "$HOME/.cargo/env"
ENV PATH="/root/.cargo/bin:$PATH"
When I try to run your crate I get this error:
error: linking with `cc` failed: exit status: 1
|
= note: LC_ALL="C" PATH="/root/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib/rustlib/aarch64-unknown-linux-gnu/bin:/
= note: /usr/bin/ld: cannot find -lCbcSolver: No such file or directory
Hi,
Do you support the current master branch Cbc?
I haven't gotten it to work yet. Compiled Cbc @ master using the following Dockerfile:
When I try to run your crate I get this error:
Maybe this comment from the refactor PR is related:
The text was updated successfully, but these errors were encountered: