mirror of
https://github.com/privacy-scaling-explorations/emp-wasm.git
synced 2026-01-10 10:37:54 -05:00
12 lines
199 B
Bash
Executable File
12 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
clang++ \
|
|
-std=c++17 \
|
|
programs/2pc.cpp \
|
|
-I src/ \
|
|
-I $(brew --prefix openssl)/include \
|
|
-L $(brew --prefix openssl)/lib \
|
|
-lcrypto \
|
|
-lssl \
|
|
-o bin/2pc
|