Skip to content

Commit

Permalink
Merge branch '17451k-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
eunovm committed Jul 7, 2022
2 parents 227d738 + ff8e969 commit dce2c60
Show file tree
Hide file tree
Showing 5 changed files with 861 additions and 1,064 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update && \
RUN pip3 install pytest

# Copy CIF source code
COPY cif.c Makefile $CIF_SRC
COPY cif.cpp Makefile $CIF_SRC
COPY aspectator $CIF_SRC/aspectator
COPY .git $CIF_SRC/.git
COPY tests $CIF_SRC/tests
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cross
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN ./configure --enable-local
RUN make

# Copy CIF source code
COPY --chown=builduser:builduser cif.c Makefile $CIF_SRC
COPY --chown=builduser:builduser cif.cpp Makefile $CIF_SRC
COPY --chown=builduser:builduser aspectator $CIF_SRC/aspectator
COPY --chown=builduser:builduser .git $CIF_SRC/.git
COPY --chown=builduser:builduser tests $CIF_SRC/tests
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ all:
cif:
mkdir -p build
# You need to add option "-g" below to get a debug version of CIF.
gcc -D CIF_VERSION=\"$(CIF_VERSION)\" -Wall -Werror -O2 cif.c -o build/cif
g++ -D CIF_VERSION=\"$(CIF_VERSION)\" -Wall -Werror -O2 --std=c++17 cif.cpp -o build/cif

build/install: uninstall install-keep-previous-instances

Expand Down
Loading

0 comments on commit dce2c60

Please sign in to comment.