I am thinking about bisecting it now that I have a simple test. Also now I have 
a Dockerfile to bootstrap any commit 
    
    
    FROM alpine
    RUN apk add --no-cache g++ curl tar git
    RUN git clone https://github.com/nim-lang/Nim.git;
    RUN cd Nim; \
    git clone --depth 1 https://github.com/nim-lang/csources.git;
    ARG GITCOMMIT
    RUN cd /Nim; \
    git checkout -b testMemory; \
    echo $GITCOMMIT; \
    git reset --hard $GITCOMMIT
    RUN cd /Nim/csources; \
    sh build.sh; \
    cd ../; \
    bin/nim c koch; \
    ./koch boot -d:release; \
    ./koch tools;
    

Reply via email to