Lines Matching full:echo

11 	echo "Building $program with llvm-native-gcc"
14 echo "Erasing $program and re-linking it"
16 echo "rm -f $program" > $linker
19 echo "Linker script created in $linker; testing it out"
23 echo "$program appears to need a dummy __main function; adding one"
24 echo "void __main () { }" > __main.c
26 echo "Done; rebuilding $linker"
27 echo "rm -f $program" > $linker
32 echo "WARNING: linker script didn't work"
38 echo "WARNING: linker script didn't work"
42 echo "Linker script created in $linker; please check it manually"
53 echo "$myname --make-linker-script PROGRAM"
54 echo "$myname OBJECTS-FILE PROGRAM LINKER CHECKER"
55 echo ""
56 echo "OBJECTS-FILE is a text file containing the names of all the .o files"
57 echo "PROGRAM is the name of the executable under test"
58 echo "(there must also exist a Makefile in the current directory which"
59 echo "has PROGRAM as a target)"
60 echo "LINKER is the script that builds PROGRAM; try --make-linker-script"
61 echo "to automatically generate it"
62 echo "CHECKER is the script that exits 0 if PROGRAM is ok, 1 if it is not OK"
63 echo "(LINKER and CHECKER must be in your PATH, or you should specify ./)"
64 echo ""
65 echo "Bugs to <gaeke@uiuc.edu>."
76 echo "ERROR: Must specify name of file w/ list of objects as 1st arg."
77 echo "(got \"$checkfiles\")"
82 echo "ERROR: $checkfiles not found"
87 echo "ERROR: Must specify name of program as 2nd arg."
92 echo "ERROR: Must specify name of link script as 3rd arg."
97 echo "ERROR: $linker not found or not executable"
98 echo "You may wish to try: $0 --make-linker-script $program"
103 echo "ERROR: Must specify name of $program check script as 3rd arg."
108 echo "ERROR: $checker not found or not executable"
113 echo "Recompiling everything with llvm-native-gcc"
123 echo "Sorry, I can't help you, $program is OK when compiled with llvm-native-gcc"
128 echo Trying to compile $f with native gcc and rebuild $program
132 echo Checking validity of new $program
135 echo Program is OK
138 echo Program is not OK
143 echo ""
144 echo "Program is OK when these files are recompiled with native gcc: "
145 echo "$okfiles"
146 echo ""
147 echo "Program is not OK when these files are recompiled with native gcc: "
148 echo "$notokfiles"
149 echo ""