You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Constantly getting the Run time error 19: "File or function is not found" error on many standard library functions. Functions like print() work but things like gettime() don't.
Dockerfile:
FROM ubuntu:bionic AS compiler-build
RUN apt-get update && \
apt-get install -y gcc \
gcc-multilib \
make \
cmake \
git \
python3.8
WORKDIR /home
RUN git clone https://github.com/Zeex/pawn.git pawn
RUN mkdir build && \
cd build && \
cmake ../pawn/source/compiler \
-DCMAKE_C_FLAGS=-m32 \
-DCMAKE_BUILD_TYPE=Release && \
make
WORKDIR /home/build
RUN cd /home/build && \
chmod +x pawncc libpawnc.so pawnruns
COPY ["test.pawn", "run.sh", "."]
ENTRYPOINT ["./run.sh"]
Issue description:
Constantly getting the Run time error 19: "File or function is not found" error on many standard library functions. Functions like print() work but things like gettime() don't.
Dockerfile:
run.sh:
Minimal complete verifiable example (MCVE):
Workspace Information:
The text was updated successfully, but these errors were encountered: