From 72d9072db1e50ea18eccfdad24a7f521936c1f92 Mon Sep 17 00:00:00 2001 From: Suyash Bagad Date: Thu, 27 Apr 2023 16:35:12 +0000 Subject: [PATCH] Add ecdsa in cmakelists. remove stdlib_ecdsa from build. --- cpp/src/CMakeLists.txt | 4 ++++ cpp/src/barretenberg/crypto/ecdsa/c_bind.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cpp/src/CMakeLists.txt b/cpp/src/CMakeLists.txt index f441c80fa4..69d867a2f7 100644 --- a/cpp/src/CMakeLists.txt +++ b/cpp/src/CMakeLists.txt @@ -76,6 +76,7 @@ if(WASM) $ $ $ + $ $ $ $ @@ -125,6 +126,7 @@ if(WASM) $ $ $ + $ $ $ $ @@ -179,6 +181,7 @@ if(WASM) $ $ $ + $ $ $ $ @@ -215,6 +218,7 @@ else() $ $ $ + $ $ $ $ diff --git a/cpp/src/barretenberg/crypto/ecdsa/c_bind.cpp b/cpp/src/barretenberg/crypto/ecdsa/c_bind.cpp index 8e34a56763..b7a8d6f5a9 100644 --- a/cpp/src/barretenberg/crypto/ecdsa/c_bind.cpp +++ b/cpp/src/barretenberg/crypto/ecdsa/c_bind.cpp @@ -1,5 +1,5 @@ #include "ecdsa.hpp" -#include +#include #define WASM_EXPORT __attribute__((visibility("default")))