├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── ChangeLog.md ├── LICENSE.txt ├── Makefile ├── README.md ├── crun.sh └── test ├── args.c ├── cache.c ├── cflags.c ├── cpp.cc ├── create.sh ├── do-eval.sh ├── eval-hacks ├── 01-run-executable.c └── 01-run-executable.sh ├── force-compile.c ├── force-compile.sh ├── just-compile.c ├── just-compile.sh ├── lines.sh └── no-cflags.c /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # used in testing 2 | crun 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/README.md -------------------------------------------------------------------------------- /crun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/crun.sh -------------------------------------------------------------------------------- /test/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/args.c -------------------------------------------------------------------------------- /test/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/cache.c -------------------------------------------------------------------------------- /test/cflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/cflags.c -------------------------------------------------------------------------------- /test/cpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/cpp.cc -------------------------------------------------------------------------------- /test/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/create.sh -------------------------------------------------------------------------------- /test/do-eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/do-eval.sh -------------------------------------------------------------------------------- /test/eval-hacks/01-run-executable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/eval-hacks/01-run-executable.c -------------------------------------------------------------------------------- /test/eval-hacks/01-run-executable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/eval-hacks/01-run-executable.sh -------------------------------------------------------------------------------- /test/force-compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/force-compile.c -------------------------------------------------------------------------------- /test/force-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/force-compile.sh -------------------------------------------------------------------------------- /test/just-compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/just-compile.c -------------------------------------------------------------------------------- /test/just-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/just-compile.sh -------------------------------------------------------------------------------- /test/lines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/crun/HEAD/test/lines.sh -------------------------------------------------------------------------------- /test/no-cflags.c: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env crun 2 | int main() { 3 | return 0; 4 | } 5 | --------------------------------------------------------------------------------