]> git.llucax.com Git - software/dgc/cdgc.git/blob - cdgcrun
alloc: Use tango to access OS-API
[software/dgc/cdgc.git] / cdgcrun
1 #!/bin/sh
2 # This is a small wrapper script to run a D program using the CDGC.
3 #
4 # Just run: ./cdgcrun myprogram my arguments
5 #
6 # To run "myprogram my arguments" using the CDGC.
7
8 export LD_PRELOAD=./build/cdgc.so
9
10 exec "$@"