/src/tools/gmp/ |
Makefile | 35 native-gmp: .native/.configure_done 36 @echo 'Extracting GNU GMP configury for a native toolchain.' 37 (cd ${.OBJDIR}/.native && \ 41 .native/.configure_done: ${_GNU_CFGSRC} ${.CURDIR}/Makefile 42 mkdir .native 2>/dev/null || true 43 (cd ${.OBJDIR}/.native && \
|
/src/tools/gdb/ |
Makefile | 64 -I${.OBJDIR}/.native/include \ 65 -I${.OBJDIR}/.native/gcc/include 123 native-gdb: .native/.configure_done 124 @echo 'Extracting GDB configury for a native toolchain.' 126 ${.OBJDIR}/.native ${NEWCONFIGDIR} ${MACHINE_GNU_PLATFORM} \ 129 .native/.configure_done: ${_GNU_CFGSRC} ${.CURDIR}/Makefile 130 mkdir -p ${.OBJDIR}/.native/include 132 cp -p ${GMPINC}/gmp.h ${.OBJDIR}/.native/include 135 cp -p ${MPFRINC}/mpfr.h ${.OBJDIR}/.native/includ [all...] |
/src/tools/binutils/ |
Makefile | 50 native-binutils: .native/.configure_done 51 @echo 'Extracting GNU binutils configury for a native toolchain.' 53 ${.OBJDIR}/.native ${NEWCONFIGDIR} ${MACHINE_GNU_PLATFORM} 55 .native/.configure_done: ${_GNU_CFGSRC} ${.CURDIR}/Makefile 56 mkdir .native 2>/dev/null || true 58 (cd .native && ${CONFIGURE_ENV:NC*:NLD*} \ 76 (cd .native && ${MAKE} configure-host) 78 (cd .native/bfd && ${MAKE} bfd.h bfdver.h) 80 (cd .native/ld && ${MAKE} ldemul-list.h [all...] |
/src/tools/gcc/ |
Makefile | 155 CCADDFLAGS= --sysroot=${DESTDIR} -L${DESTDIR}/lib -L${DESTDIR}/usr/lib -B${DESTDIR}/usr/lib/ -I${.OBJDIR}/.native/gcc/include 164 @echo 'Creating files needed for libgcc by a native bootstrap build.' 171 @echo 'Creating files needed for libstdc++ by a native bootstrap build.' 177 native-gcc: .native/.configure_done 178 @echo 'Extracting GNU GCC configury for a native toolchain.' 180 ${.OBJDIR}/.native ${NEWCONFIGDIR} ${NETBSDSRCDIR} \ 210 MKENV_BUILD_MAKE=cd .native && ${MKNATIVE_ENV} ${BUILD_MAKE} 212 .native/.configure_done: ${_GNU_CFGSRC} ${.CURDIR}/Makefile 213 mkdir .native .native/gcc .native/gcc/include 2>/dev/null || tru [all...] |
/src/sys/arch/sandpoint/stand/altboot/ |
pciide.c | 86 int native, n, retries; local in function:pciide_init 100 native = PCI_CLASS(val) != PCI_CLASS_IDE || 103 if (native) { 104 /* native, use BAR 01234 */
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/ |
nouveau_connector.c | 74 NV_DEBUG(drm, "native mode from preferred\n"); 97 NV_DEBUG(drm, "native mode from largest: %dx%d@%d\n", 151 * to the native mode regardless of this setting. 715 * native mode and exit. 840 struct drm_display_mode *native = nv_connector->native_mode, *m; local in function:nouveau_connector_scaler_modes_add 845 if (!native) 849 if (mode->hdisplay <= native->hdisplay && 850 mode->vdisplay <= native->vdisplay && 851 (mode->hdisplay != native->hdisplay || 852 mode->vdisplay != native->vdisplay)) [all...] |
/src/usr.bin/make/ |
test-variants.mk | 140 # Only in native mode, make dares to use a shortcut in Compat_RunCommand 144 TESTS+= non-native 145 CPPFLAGS.non-native= -UMAKE_NATIVE 146 CPPFLAGS.non-native+= -DHAVE_STRERROR -DHAVE_SETENV -DHAVE_VSNPRINTF
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/ |
nouveau_dispnv50_disp.c | 343 * same size as the native one (e.g. different 807 struct drm_display_mode *native; member in struct:nv50_mstc 917 mstc->native); 1103 if (mstc->native) 1104 drm_mode_destroy(mstc->connector.dev, mstc->native); 1105 mstc->native = nouveau_conn_native_mode(&mstc->connector);
|
/src/sys/kern/ |
kern_exec.c | 629 * in order to run native images only. Otherwise, we autoload all 636 static const char * const native[] = { local in function:exec_autoload 663 list = nexecs == 0 ? native : compat;
|