Open appst opened 3 years ago
I had similar issues, and I solved them by building.... everything:
FROM faddat/archlinux
COPY . /clarion
ENV WASI_SDK_PREFIX=/opt/wasi-sdk
RUN pacman -Syyu --noconfirm base-devel binaryen cmake curl git boost git openssl gmp clang ninja yarn python
RUN git clone https://github.com/WebAssembly/wasi-sdk/ --branch wasi-sdk-12 --recursive
RUN cd wasi-sdk && \
make -j24 && \
cp -r build/install/opt/wasi-sdk /opt
RUN cd /clarion && \
mkdir build && \
cd build && \
cmake -DCMAKE_BUILD_TYPE=Release .. && \
make -j$(nproc) && \
ctest -j$(nproc) && \
mkdir -p clariondata
following the build instructions on a clean 20.04.1 I get lots of warning that eventually lead to the following...
ask if you would like the complete output. thanks