View | Details | Raw Unified | Return to bug 167829
Collapse All | Expand All

(-)stable/8/gnu/usr.bin/cc/cc_tools/Makefile (-11 / +1 lines)
Lines 303-314 Link Here
303
303
304
# Multilib config file
304
# Multilib config file
305
multilib.h:
305
multilib.h:
306
.if ${TARGET_ARCH} == "amd64"
307
	echo 'static const char *const multilib_raw[] = { \
308
	    ". !m64 !m32;", \
309
	    "64:../lib m64 !m32;", \
310
	    "32:../lib32 !m64 m32;", NULL };'			> ${.TARGET}
311
	echo 'static const char *const multilib_matches_raw[] = { \
312
	    "m64 m64;", "m32 m32;", NULL };'			>> ${.TARGET}
313
	echo 'static const char *multilib_options = "m64/m32";'	>> ${.TARGET}
314
.else
315
	echo 'static const char *const multilib_raw[] = { \
306
	echo 'static const char *const multilib_raw[] = { \
316
	    ". ;", NULL };'					> ${.TARGET}
307
	    ". ;", NULL };'					> ${.TARGET}
317
	echo 'static const char *const multilib_matches_raw[] = { \
308
	echo 'static const char *const multilib_matches_raw[] = { \
318
	    NULL };'						>> ${.TARGET}
309
	    NULL };'						>> ${.TARGET}
310
	echo 'static const char *multilib_extra = "";'		>> ${.TARGET}
319
	echo 'static const char *multilib_options = "";'	>> ${.TARGET}
311
	echo 'static const char *multilib_options = "";'	>> ${.TARGET}
320
.endif
321
	echo 'static const char *multilib_extra = "";'		>> ${.TARGET}
322
	echo 'static const char *const multilib_exclusions_raw[] = { \
312
	echo 'static const char *const multilib_exclusions_raw[] = { \
323
	    NULL };'						>> ${.TARGET}
313
	    NULL };'						>> ${.TARGET}

Return to bug 167829