Skip to content

Commit

Permalink
clang
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou committed Feb 7, 2024
1 parent b275f40 commit 63e003c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ In the checkout of this repository:
```bash
$ cd cpp/
$ mkdir build && cd build
$ cmake -GNinja ..
$ CC="clang-11" CXX="clang++-11" cmake -GNinja ..
$ ninja
$ ls
libccf_app.enclave.so.signed # SGX-enabled application
Expand Down
2 changes: 1 addition & 1 deletion docker/ccf_app_cpp.enclave
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM mcr.microsoft.com/ccf/app/dev:4.0.14-sgx as builder
COPY ./cpp /cpp
RUN mkdir -p /build/
WORKDIR /build/
RUN cmake -DCOMPILE_TARGET=sgx -GNinja /cpp && ninja
RUN CC="clang-11" CXX="clang++-11" cmake -DCOMPILE_TARGET=sgx -GNinja /cpp && ninja

# Run
FROM mcr.microsoft.com/ccf/app/run:4.0.14-sgx
Expand Down

0 comments on commit 63e003c

Please sign in to comment.