aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/full_bisect_test/build.sh
diff options
context:
space:
mode:
authorZhizhou Yang <zhizhouy@google.com>2017-07-22 01:18:46 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-22 01:18:46 +0000
commitf1a93c225b92dc0059e7d7e2de7c7bd0a493e23d (patch)
treebf139ee25415cecde142e95791edba3803b2452a /binary_search_tool/full_bisect_test/build.sh
parent3690e025de8daaed03c4acb02d2b054e5c4c0dd5 (diff)
parentddfea1f7e75062a350bd5a9418562e3b5af5b6e9 (diff)
downloadtoolchain-utils-f1a93c225b92dc0059e7d7e2de7c7bd0a493e23d.tar.gz
am: ddfea1f7e7 Change-Id: I867402329ff73ee19480446e804bc4c1dfac51e9
Diffstat (limited to 'binary_search_tool/full_bisect_test/build.sh')
-rwxr-xr-xbinary_search_tool/full_bisect_test/build.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/binary_search_tool/full_bisect_test/build.sh b/binary_search_tool/full_bisect_test/build.sh
new file mode 100755
index 00000000..9d40fb55
--- /dev/null
+++ b/binary_search_tool/full_bisect_test/build.sh
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+# This file compiles all the source files into .o files, then links them to form
+# the test binary, 'bin-trees'. The .o files all go into the 'work' directory.
+# There are 'good' and 'bad' versions of inorder_norecurse and preorder_norecurse
+# (e.g. inorder_norecurse.c.good and inorder_norecurse.c.bad). This script
+# assumes that the desired versions of those files have been copied into
+# inorder_norecurse.c and preorder_norecurse.c. The script files
+# make_sources_good.sh and make_sources_bad.sh are meant to handle this.
+#
+# This script is meant to be run directly in the full_bisect_test directory.
+# Most other scripts assume they are being run from the parent directory.
+
+gcc -c build.c -o work/build.o
+gcc -c preorder.c -o work/preorder.o
+gcc -c inorder.c -o work/inorder.o
+gcc -c main.c -o work/main.o
+gcc -c stack.c -o work/stack.o
+gcc -c preorder_norecurse.c -o work/preorder_norecurse.o
+gcc -c inorder_norecurse.c -o work/inorder_norecurse.o
+gcc -o bin-trees work/main.o work/preorder.o work/inorder.o work/build.o work/preorder_norecurse.o work/inorder_norecurse.o work/stack.o
+