Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanchatelain committed Apr 17, 2024
1 parent 7077d91 commit 0913fa3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,18 @@ ENV CXX=g++-${GCC_VERSION}
COPY . /build/verificarlo/
WORKDIR /build/verificarlo

RUN echo ./autogen.sh && \
./configure \
--with-llvm=$(llvm-config-${LLVM_VERSION} --prefix) \
$( [[ "$WITH_FLANG" = "flang" ]] && echo "--with-flang" || echo "--without-flang" )

RUN { ./autogen.sh && \
./configure \
--with-llvm=$(llvm-config-${LLVM_VERSION} --prefix) \
$( [[ "$WITH_FLANG" = "flang" ]] && echo "--with-flang" || echo "--without-flang" ) ; } \
|| { cat config.log; exit 1; }


# Build verificarlo
RUN make && make install

Expand Down

0 comments on commit 0913fa3

Please sign in to comment.