1#!/bin/bash 2 3# This file compiles all the source files into .o files, then links them to form 4# the test binary, 'bin-trees'. The .o files all go into the 'work' directory. 5# There are 'good' and 'bad' versions of inorder_norecurse and preorder_norecurse 6# (e.g. inorder_norecurse.c.good and inorder_norecurse.c.bad). This script 7# assumes that the desired versions of those files have been copied into 8# inorder_norecurse.c and preorder_norecurse.c. The script files 9# make_sources_good.sh and make_sources_bad.sh are meant to handle this. 10# 11# This script is meant to be run directly in the full_bisect_test directory. 12# Most other scripts assume they are being run from the parent directory. 13 14x86_64-cros-linux-gnu-gcc -c build.c -o work/build.o 15x86_64-cros-linux-gnu-gcc -c preorder.c -o work/preorder.o 16x86_64-cros-linux-gnu-gcc -c inorder.c -o work/inorder.o 17x86_64-cros-linux-gnu-gcc -c main.c -o work/main.o 18x86_64-cros-linux-gnu-gcc -c stack.c -o work/stack.o 19x86_64-cros-linux-gnu-gcc -c preorder_norecurse.c -o work/preorder_norecurse.o 20x86_64-cros-linux-gnu-gcc -c inorder_norecurse.c -o work/inorder_norecurse.o 21x86_64-cros-linux-gnu-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 22