aboutsummaryrefslogtreecommitdiff
path: root/build.common
diff options
context:
space:
mode:
authorHoward Mao <zhehao.mao@gmail.com>2016-02-23 23:21:51 -0800
committerHoward Mao <zhehao.mao@gmail.com>2016-02-23 23:21:51 -0800
commit1527c5ea4a500ae142d4c8bef4d2926d9a1d45c5 (patch)
tree238256560941dface96cf7b99dec3a11b5396a33 /build.common
parent509c745061ce072e175015b9df83310a68eeb4a4 (diff)
downloadriscv-tools-1527c5ea4a500ae142d4c8bef4d2926d9a1d45c5.zip
riscv-tools-1527c5ea4a500ae142d4c8bef4d2926d9a1d45c5.tar.gz
riscv-tools-1527c5ea4a500ae142d4c8bef4d2926d9a1d45c5.tar.bz2
riscv-tests has proper install rule, no more need for special-casing
Diffstat (limited to 'build.common')
-rw-r--r--build.common14
1 files changed, 0 insertions, 14 deletions
diff --git a/build.common b/build.common
index 3ae0424..ec7cf11 100644
--- a/build.common
+++ b/build.common
@@ -34,17 +34,3 @@ function build_project {
$MAKE -j$JOBS install >> build.log
cd - > /dev/null
}
-
-function build_tests {
- echo
- cd riscv-tests/isa > /dev/null
- echo "Building project riscv-tests/isa"
- $MAKE -j$JOBS clean > /dev/null
- $MAKE -j$JOBS > /dev/null
- cd - > /dev/null
- cd riscv-tests/benchmarks > /dev/null
- echo "Building project riscv-tests/benchmarks"
- $MAKE -j$JOBS clean > /dev/null
- $MAKE -j$JOBS > /dev/null
- cd - > /dev/null
-}