Lines Matching full:with
16 # along with this program. If not, see <https://www.gnu.org/licenses/>.
43 This script generates a file with the cross-compilation settings needed to build Picolibc.
72 --exewrap=xxx The first time, add Meson setting 'exe_wrapper' with the given
75 --meson-compat=0.55 Provides compability with Meson versions up to 0.55.
87 If you are calling this script from a GNU Make makefile, and you have a variable with all compiler …
113 along with this program. If not, see L<http://www.gnu.org/licenses/>.
235 …# The "-:" means an option can start with '-', which helps parse long options which start with "--…
247 -) # This case triggers for options beginning with a double hyphen ('--').
251 if [[ "$OPTARG" =~ .*=.* ]] # With this --key=value format, only one argument is possible.
271 else # With this format, multiple arguments are possible, like in "--key value1 value2".
339 STR="${STR//\\/\\\\}" # Replace \ with \\
340 STR="${STR//\'/\\\'}" # Replace ' with \'
425 # We could generate an array with just one element, but a string looks nicer.
448 # All known options must be listed, even those with 0 arguments.
486 …abort "Invalid number of command-line arguments. Run this tool with the --help option for usage in…