OLD | NEW |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
2 # Limit the amount of time and the core size for the compiler. | 2 # Limit the amount of time and the core size for the compiler. |
3 set -e | 3 set -e |
4 | 4 |
5 ulimit -t 5 -c 0 | 5 ulimit -t 5 -c 0 |
6 | 6 |
7 c++ $@ | 7 cc $@ |
OLD | NEW |