Skip to content

Instantly share code, notes, and snippets.

View DewaldDeJager's full-sized avatar

Dewald de Jager DewaldDeJager

View GitHub Profile
@DewaldDeJager
DewaldDeJager / compilation-output.txt
Created January 3, 2019 13:18
OpenFST Compilation Error
checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
@DewaldDeJager
DewaldDeJager / Dockerfile
Last active January 4, 2019 05:57
OpenFst Dockerfile
FROM gcc:7.4
COPY . /usr/src/openfst
WORKDIR /usr/src/openfst
RUN ./configure --enable-static --enable-shared --enable-far --enable-lookahead-fsts --enable-const-fsts --enable-pdt --enable-ngram-fsts --enable-linear-fsts --prefix=/usr
RUN make install

Keybase proof

I hereby claim:

  • I am dewalddejager on github.
  • I am dearvolt (https://keybase.io/dearvolt) on keybase.
  • I have a public key ASDp1EFm1wHuF8FrUEj76LsOfIZllHn60rG5xpHZ6l3Q3wo

To claim this, I am signing this object:

@DewaldDeJager
DewaldDeJager / README.md
Last active April 25, 2024 09:47
Easy GitHub workflow for keeping a fork in sync with upstream

Sync Fork

This workflow uses the GitHub CLI to keep a forked repo in sync with the upstream repo. Add it to your repo as .github/workflows/sync-fork.yaml.

It runs daily to sync the default branch and can be triggered manually for any branch.