8 lines
108 B
Plaintext
8 lines
108 B
Plaintext
|
#!/bin/bash
|
||
|
# Limit the amount of time and the core size for the compiler.
|
||
|
set -e
|
||
|
|
||
|
ulimit -t 5 -c 0
|
||
|
|
||
|
c++ $@
|