From 9715083fdc5d8920aeb637a877a188ab02501562 Mon Sep 17 00:00:00 2001 From: Andrew Simard <41052272+500Foods@users.noreply.github.com> Date: Fri, 17 May 2024 20:12:00 -0700 Subject: [PATCH] Update Build-Linux-x86.yml --- .github/workflows/Build-Linux-x86.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Build-Linux-x86.yml b/.github/workflows/Build-Linux-x86.yml index c13d51f..80f4f88 100644 --- a/.github/workflows/Build-Linux-x86.yml +++ b/.github/workflows/Build-Linux-x86.yml @@ -46,6 +46,8 @@ jobs: ls -l /usr/include/libfswatch/c echo "/usr/lib/*fswatch*" ls -l /usr/lib/*fswatch* + echo "ldconfig" + ldconfig -p | grep fswatch # dpkg -s libfswatch-dev # dpkg -s libfswatch # dpkg -s fswatch @@ -56,7 +58,7 @@ jobs: - name: Build agentc working-directory: ./AgentC - run: gcc agentc.c -o agentc -lsqlite3 -lxxhash -ljansson -lwebsockets ${{ env.FSWATCH_LIB }} -lfswatch ${{ env.FSWATCH_INC }} -lcurl -lssl -lcrypto -L/usr/lib + run: gcc agentc.c -o agentc -lsqlite3 -lxxhash -ljansson -lwebsockets ${{ env.FSWATCH_LIB }} -lfswatch ${{ env.FSWATCH_INC }} -lcurl -lssl -lcrypto -L/usr/lib/ - name: Copy agentc to dist folder run: |