Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
fariedabuzaid committed Nov 29, 2023
1 parent 2fc7a0d commit de4c1ac
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -141,23 +141,24 @@ RUN apt-get install -y --no-install-recommends \
python3 \
python3-pip
# Packages maven and uuid-dev are required for carl-parser
ENV CMAKE_PREFIX_PATH="/opt/carl/build:$CMAKE_PREFIX_PATH"

# Build carl-parser
###################
#WORKDIR /opt/
WORKDIR /opt/

# Obtain carl-parser from public repository
#RUN git clone -b master14 https://github.com/ths-rwth/carl-parser.git
RUN git clone -b master14 https://github.com/ths-rwth/carl-parser.git

# Switch to build directory
#RUN mkdir -p /opt/carl-parser/build
#WORKDIR /opt/carl-parser/build
RUN mkdir -p /opt/carl-parser/build
WORKDIR /opt/carl-parser/build

# Configure carl-parser
#RUN cmake .. -DCMAKE_BUILD_TYPE=Release
RUN cmake .. -DCMAKE_BUILD_TYPE=Release

# Build carl-parser
#RUN make carl-parser -j $no_threads
RUN make carl-parser -j $no_threads

# Build pycarl
##############
Expand Down

0 comments on commit de4c1ac

Please sign in to comment.