├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md └── root ├── build.sh ├── configure.sh ├── install.sh ├── patch ├── compiler-rt-01-sanitizer-nongnu.patch ├── compiler-rt-02-ngtc-specific.patch ├── compiler-rt-03-link-against-libexecinfo.patch ├── libcxx-01-musl-hardfix.patch └── libcxx-02-enable-libgcc-link.patch └── sync.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/README.md -------------------------------------------------------------------------------- /root/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/root/build.sh -------------------------------------------------------------------------------- /root/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/root/configure.sh -------------------------------------------------------------------------------- /root/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/root/install.sh -------------------------------------------------------------------------------- /root/patch/compiler-rt-01-sanitizer-nongnu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/root/patch/compiler-rt-01-sanitizer-nongnu.patch -------------------------------------------------------------------------------- /root/patch/compiler-rt-02-ngtc-specific.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/root/patch/compiler-rt-02-ngtc-specific.patch -------------------------------------------------------------------------------- /root/patch/compiler-rt-03-link-against-libexecinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/root/patch/compiler-rt-03-link-against-libexecinfo.patch -------------------------------------------------------------------------------- /root/patch/libcxx-01-musl-hardfix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/root/patch/libcxx-01-musl-hardfix.patch -------------------------------------------------------------------------------- /root/patch/libcxx-02-enable-libgcc-link.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/root/patch/libcxx-02-enable-libgcc-link.patch -------------------------------------------------------------------------------- /root/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpimh/ngtc/HEAD/root/sync.sh --------------------------------------------------------------------------------