OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash | |
2 # Limit the amount of time and the core size for the compiler. | |
mtklein
2014/04/30 19:16:30
set -e
?
jcgregorio
2014/04/30 19:23:47
Done.
| |
3 | |
4 ulimit -t 5 -c 1 | |
mtklein
2014/04/30 19:16:30
Maybe just -c 0 if we're already willing to limit
jcgregorio
2014/04/30 19:23:47
Done.
| |
5 | |
6 c++ $@ | |
OLD | NEW |