Searched refs:HOSTCC (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/one-true-awk/ |
H A D | makefile | 34 HOSTCC = cc -g -Wall -pedantic -Wcast-qual macro 36 CC = $(HOSTCC) # change this is cross-compiling. 65 $(HOSTCC) $(CFLAGS) maketab.c -o maketab
|
/freebsd/contrib/bc/ |
H A D | configure | 225 printf ' HOSTCC Host C compiler. Must be compatible with POSIX c99. If there is\n' 230 printf ' HOST_CC Same as HOSTCC. If HOSTCC also exists, it is used.\n' 232 printf ' HOSTCFLAGS CFLAGS for HOSTCC. Default is "$CFLAGS".\n' 280 printf ' "$HOSTCC" and run on the host machine. Using `gen/strgen.sh`\n' 1183 if [ -z "$HOSTCC" ] && [ -z "$HOST_CC" ]; then 1184 HOSTCC="$CC" 1185 elif [ -z "$HOSTCC" ]; then 1186 HOSTCC="$HOST_CC" 1189 if [ "$HOSTCC" ! [all...] |
H A D | configure.sh | 1183 if [ -z "$HOSTCC" ] && [ -z "$HOST_CC" ]; then 1184 HOSTCC="$CC" 1185 elif [ -z "$HOSTCC" ]; then 1186 HOSTCC="$HOST_CC" 1189 if [ "$HOSTCC" != "$CC" ]; then 1192 ccbase=$(basename "$HOSTCC") 1199 ccdir=$(dirname "$HOSTCC") 1200 if [ "$ccdir" = "." ] && [ "${HOSTCC#.}" = "$HOSTCC" ]; then 1205 HOSTCC="${ccdir}${cc}" 1591 if [ "$HOSTCC" != "$CC" ] || [ "$OLDHOSTCFLAGS" != "$OLDCFLAGS" ]; then [all …]
|
H A D | Makefile.in | 228 HOSTCC = %%HOSTCC%% 283 $(HOSTCC) $(HOSTCFLAGS) -lm -o $(MINISTAT_EXEC) $(ROOTDIR)/scripts/ministat.c 287 $(HOSTCC) $(HOSTCFLAGS) -lm -o $(BITFUNCGEN_EXEC) $(ROOTDIR)/scripts/bitfuncgen.c
|
/freebsd/contrib/bc/manuals/ |
H A D | build.md | 106 to the environment variable `HOSTCC` or `HOST_CC` (the two are equivalent, 107 though `HOSTCC` is prioritized). This is in order to bootstrap core file(s), if 112 HOSTCC="/path/to/native/compiler" ./configure.sh 119 `HOSTCFLAGS` and `HOST_CFLAGS` can be used to set compiler flags for `HOSTCC`. 120 (The two are equivalent, as `HOSTCC` and `HOST_CC` are.) `HOSTCFLAGS` is 121 prioritized over `HOST_CFLAGS`. If neither are present, `HOSTCC` (or `HOST_CC`) 124 It is expected that `CC` produces code for the target system and `HOSTCC` 133 This `bc` supports `CC`, `HOSTCC`, `HOST_CC`, `CFLAGS`, `HOSTCFLAGS`, 155 #### `HOSTCC` or `HOST_CC` 174 Command-line flags that will be passed verbatim to `HOSTCC` or `HOST_CC`. [all …]
|
/freebsd/contrib/ncurses/ |
H A D | NEWS | 13587 + add $(HOSTCC) symbol to ncurses Makefile.in, to simplify setup for
|