Skip to content

Commit

Permalink
test(debug): package config debug
Browse files Browse the repository at this point in the history
  • Loading branch information
parfeon committed Nov 20, 2024
1 parent e17a9ea commit 17d4da1
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,16 @@ if [ ! -f /usr/lib/x86_64-linux-gnu/pkgconfig/openssl.pc ]; then
echo "'openssl' package config not found!"
else
echo "'openssl' package configuration exists"
cat /usr/lib/x86_64-linux-gnu/pkgconfig/openssl.pc
echo "----"
fi
echo "----"
if [ ! -f /usr/lib/x86_64-linux-gnu/pkgconfig/libssl.pc ]; then
echo "'libssl' package config not found!"
else
echo "'libssl' package configuration exists"
cat /usr/lib/x86_64-linux-gnu/pkgconfig/libssl.pc
echo "----"

if [ ! -f /usr/lib/x86_64-linux-gnu/pkgconfig/openssl.pc ]; then
echo "'openssl' package config not found!"
Expand Down Expand Up @@ -46,8 +50,8 @@ fi

export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig:$PKG_CONFIG_PATH
echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH"
echo "CFLAGS: '$(shell pkg-config --cflags openssl)'"
echo "LIBS: '$(shell pkg-config --libs openssl)'"
echo "CFLAGS: '$(pkg-config --cflags openssl)'"
echo "LIBS: '$(pkg-config --libs openssl)'"


echo "::group::Run unit tests ('$1' $CC / $CXX)"
Expand Down

0 comments on commit 17d4da1

Please sign in to comment.