Skip to content

Commit

Permalink
Use make.sh for v5
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Nov 10, 2024
1 parent 3e5a6dd commit 67255b0
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,13 @@ RUN mkdir /capstone
COPY . /capstone
WORKDIR /capstone/

# Using cmake, see BUILDING.md file
# For debug build change "Release" to "Debug"
RUN cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1
RUN cmake --build build
# Run cmake install, by default everything goes into /usr/local
RUN make.sh

# List files before cmake install
# RUN find / -type f > /before-install.txt

# Run cmake install, by default everything goes into /usr/local
RUN cmake --install build
RUN make.sh install

# List files after cmake install
# RUN find / -type f > /after-install.txt
Expand Down

0 comments on commit 67255b0

Please sign in to comment.