Lines Matching +full:- +full:v
2 # SPDX-License-Identifier: BSD-3-Clause
5 # Simple script for printing preprocessor output in human-readable fashion
7 # For more detailed useage, use --h option.
10 -v style="${1}" \
11 -v regex="${2}" \
31 | enstyle "1;31" '->|\\.|&'\
34 | enstyle "32" '0x[A-Za-z0-9]+'\
45 gcc_params="${params} -E -dD ${infile}"
56 bash -c "$cmd" \
58 -e 's/;\ /;\n\t/g'\
59 -e 's/{\ /\n{\n\t/g'\
60 -e 's/}[\ ]*/\n}\n/g'\
73 "usage: $0 [-hevc] (-f IN_FILE) [-I INCLUDE_DIR] [-u USER_REGEXP]
75 Expands c macroes in files given with -f flag and prints them prettily.
78 -f IN_FILE input file to gcc
80 -h show this help message and exit
81 -e don't redirect gcc errors to /dev/null
82 -v show verbose output
83 -c color the output
84 -u USER_REGEXP highlights user defined regular expression
85 -I INCLUDE_DIR pass INCLUDE_DIR to gcc with -I option
95 v)
102 gcc_params+=" -I ${OPTARG}"
108 echo "Invalid option: -${OPTARG}" >&2
112 echo "Option -${OPTARG} requires an argument." >&2