├── .gitignore ├── README.md ├── gen-buildenv-x86.sh ├── test.c └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatch/tcpdump-android/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatch/tcpdump-android/HEAD/README.md -------------------------------------------------------------------------------- /gen-buildenv-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatch/tcpdump-android/HEAD/gen-buildenv-x86.sh -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | printf("hello world\n"); 6 | } 7 | -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatch/tcpdump-android/HEAD/test.sh --------------------------------------------------------------------------------