aboutsummaryrefslogtreecommitdiff
path: root/src/run.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsrc/run.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/run.sh b/src/run.sh
index 8cf836f..0c5fa32 100755
--- a/src/run.sh
+++ b/src/run.sh
@@ -1,5 +1,6 @@
as test.s -o test.o -g
as sorter.s -o sorter.o -g
as insertionsort.s -o insertionsort.o -g
-ld insertionsort.o sorter.o test.o -o test -g
+as utils.s -o utils.o -g
+ld insertionsort.o sorter.o utils.o test.o -o test -g
./test