├── .github └── workflows │ ├── build.yml │ └── go-compatibility.yml ├── .gitignore ├── LICENSE ├── README.md ├── cmd └── landrun │ └── main.go ├── demo.gif ├── go.mod ├── go.sum ├── internal ├── elfdeps │ ├── elfdeps.go │ ├── elfdeps_test.go │ └── testdata │ │ ├── liba.c │ │ ├── libb.c │ │ └── main.c ├── exec │ └── runner.go ├── log │ └── log.go └── sandbox │ └── sandbox.go └── test.sh /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/go-compatibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/.github/workflows/go-compatibility.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/README.md -------------------------------------------------------------------------------- /cmd/landrun/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/cmd/landrun/main.go -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/demo.gif -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/go.sum -------------------------------------------------------------------------------- /internal/elfdeps/elfdeps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/internal/elfdeps/elfdeps.go -------------------------------------------------------------------------------- /internal/elfdeps/elfdeps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/internal/elfdeps/elfdeps_test.go -------------------------------------------------------------------------------- /internal/elfdeps/testdata/liba.c: -------------------------------------------------------------------------------- 1 | int a() { return 1; } 2 | -------------------------------------------------------------------------------- /internal/elfdeps/testdata/libb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/internal/elfdeps/testdata/libb.c -------------------------------------------------------------------------------- /internal/elfdeps/testdata/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/internal/elfdeps/testdata/main.c -------------------------------------------------------------------------------- /internal/exec/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/internal/exec/runner.go -------------------------------------------------------------------------------- /internal/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/internal/log/log.go -------------------------------------------------------------------------------- /internal/sandbox/sandbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/internal/sandbox/sandbox.go -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zouuup/landrun/HEAD/test.sh --------------------------------------------------------------------------------