From 11ed460578cca8481c623b445a1398cb84b94c52 Mon Sep 17 00:00:00 2001 From: Aiden Fox Ivey Date: Thu, 24 Oct 2024 13:46:56 -0400 Subject: [PATCH] fix linking path Signed-off-by: Aiden Fox Ivey --- .github/workflows/basic.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 398b4e819b..50f1148010 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -111,7 +111,8 @@ jobs: run: ninja working-directory: build - name: Link with C++ program - run: g++ ../.github/tests/example_sig.cpp -g -lcrypto \ + run: / + g++ ../.github/cpp_linking_example.cpp -g -lcrypto \ -Iinclude lib/liboqs.a -o example_sig --std=c++11 working-directory: build