Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Makefile.in: Add instrumentation configuration in releasecheck target
Browse files Browse the repository at this point in the history
Cirrus CI: Add the binutils-dev package, Linux task.
It is needed to build with '--enable-instrument-functions'.

(cherry picked from commit c3d67df
 and ed2a011)
  • Loading branch information
fxlb committed Oct 22, 2023
1 parent 37ae1be commit 2155f8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ linux_task:
- apt-get -qy update >/dev/null
- apt-get -qy install git autoconf make cmake clang-15 gcc bc >/dev/null
- apt-get -qy install flex bison libdbus-1-dev libbluetooth-dev libnl-genl-3-dev libibverbs-dev >/dev/null # for libpcap
- apt-get -qy install libssl-dev libsmi2-dev libcap-ng-dev libpcap-dev >/dev/null
- apt-get -qy install libssl-dev libsmi2-dev libcap-ng-dev libpcap-dev binutils-dev >/dev/null
- apt-get -qy install sudo >/dev/null # for some tcpdump commands
- apt list --installed 'lib*-dev'
- echo '$ git clone [...] libpcap.git'
Expand Down
4 changes: 2 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,8 @@ releasecheck: releasetar
cd "$$TAG" && \
echo "[$@] $$ touch .devel" && \
touch .devel && \
echo "[$@] $$ ./configure --enable-smb --quiet --prefix=$$INSTALL_DIR" && \
./configure --enable-smb --quiet --prefix="$$INSTALL_DIR" && \
echo "[$@] $$ ./configure --enable-instrument-functions --enable-smb --quiet --prefix=$$INSTALL_DIR" && \
./configure --enable-instrument-functions --enable-smb --quiet --prefix="$$INSTALL_DIR" && \
echo '[$@] $$ $(MAKE) -s all check' && \
$(MAKE) -s all check >/dev/null && \
echo '[$@] $$ $(MAKE) -s install' && \
Expand Down

0 comments on commit 2155f8a

Please sign in to comment.