89126a6eda
BUG=skia: R=mtklein@google.com Author: jcgregorio@google.com Review URL: https://codereview.chromium.org/265453010 git-svn-id: http://skia.googlecode.com/svn/trunk@14483 2bbb7eff-a529-9590-31e7-b0007b416f81
8 lines
108 B
Bash
Executable File
8 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
# Limit the amount of time and the core size for the compiler.
|
|
set -e
|
|
|
|
ulimit -t 5 -c 0
|
|
|
|
c++ $@
|