Skip to content

Instantly share code, notes, and snippets.

View paulwratt's full-sized avatar

Paul Wratt paulwratt

View GitHub Profile
@paulwratt
paulwratt / build-tcc.sh
Created May 10, 2019 07:36 — forked from TheBrokenRail/build-tcc.sh
Build TinyCC
#!/bin/bash
set -e
PATH="$(pwd)/tinycc/temp:$(pwd)/tinycc/build/bin:$(pwd)/google-ndk:$(pwd)/google-ndk/toolchains/llvm/prebuilt/linux-x86_64/bin:${PATH}"
if [[ -d tinycc ]]; then
rm -rf tinycc
fi