1 1.32 christos # $NetBSD: Makefile,v 1.32 2017/11/28 22:25:16 christos Exp $ 2 1.1 cl 3 1.1 cl .include <bsd.own.mk> 4 1.1 cl 5 1.19 christos MODULE= gdb 6 1.30 mrg GDBDIR= ${.CURDIR}/../../external/gpl3/${EXTERNAL_GDB_SUBDIR} 7 1.30 mrg GNUHOSTDIST= ${GDBDIR}/dist 8 1.1 cl 9 1.1 cl FIND_ARGS= \! \( -type d -name sim -prune \) 10 1.1 cl 11 1.1 cl CONFIGURE_ARGS= --target=${MACHINE_GNU_PLATFORM} --disable-nls \ 12 1.1 cl --program-transform-name="s,^,${MACHINE_GNU_PLATFORM}-," 13 1.1 cl 14 1.1 cl MAKE_ARGS= MACHINE= MAKEINFO=${TOOL_MAKEINFO:Q} 15 1.1 cl 16 1.1 cl ALL_TARGET= all-gdb 17 1.1 cl INSTALL_TARGET= install-gdb 18 1.1 cl 19 1.30 mrg .include "${GDBDIR}/Makefile.gdb_arch" 20 1.30 mrg #GDB_MACHINE_ARCH= ${MACHINE_ARCH:C/e?armv[4-7]h?f?/arm/} 21 1.30 mrg 22 1.22 bouyer .include "${.CURDIR}/../Makefile.gmakehost" 23 1.32 christos BUILD_MAKE=${TOOL_GMAKE} 24 1.32 christos 25 1.32 christos BINENV= /usr/bin/env -i 26 1.32 christos 27 1.32 christos 28 1.32 christos MKNATIVE_ENV= ${BINENV} ${CONFIGURE_ENV:NC*:NLD*} \ 29 1.32 christos CC_FOR_BUILD=${HOST_CC:Q} \ 30 1.32 christos CC=${CC:Q}' '${CCADDFLAGS:Q} \ 31 1.32 christos CXX=${CXX:Q}' '${CCADDFLAGS:Q} \ 32 1.32 christos CPP=${CPP:Q}' '-isystem' '${DESTDIR}/usr/include \ 33 1.32 christos MAKE=${BUILD_MAKE:Q} \ 34 1.32 christos CFLAGS= CPPFLAGS= CXXFLAGS=${CXXADDFLAGS:Q} \ 35 1.32 christos LDFLAGS=${LDADDFLAGS:Q} \ 36 1.32 christos MSGFMT=${TOOLDIR}/bin/${_TOOL_PREFIX}msgfmt \ 37 1.32 christos XGETTEXT=${TOOLDIR}/bin/${_TOOL_PREFIX}xgettext \ 38 1.32 christos LIBS=-lintl \ 39 1.32 christos ${MKNATIVE_CONFIGURE_PRESET} 40 1.32 christos 41 1.32 christos MKENV_BUILD_MAKE=${MKNATIVE_ENV} ${BUILD_MAKE} 42 1.1 cl 43 1.29 christos CCADDFLAGS+= --sysroot=${DESTDIR} -B${DESTDIR}/usr/lib/ -I${.OBJDIR}/.native/gcc/include 44 1.29 christos LDADDFLAGS+= -L${DESTDIR}/lib -L${DESTDIR}/usr/lib 45 1.28 christos CXXADDFLAGS+= -D__STDC_FORMAT_MACROS 46 1.28 christos CXXADDFLAGS+= -D__STDC_LIMIT_MACROS 47 1.28 christos CXXADDFLAGS+= -D__STDC_CONSTANT_MACROS 48 1.29 christos HOST_CXXFLAGS+= ${CXXADDFLAGS} 49 1.2 nathanw 50 1.2 nathanw NEWCONFIGDIR?= ${.CURDIR}/../.. 51 1.2 nathanw MKNATIVE?= ${.CURDIR}/mknative-gdb 52 1.2 nathanw 53 1.7 uwe # Some configure tests require running a test program, which is not 54 1.7 uwe # possible when cross-building. Provide configure with "cached" 55 1.7 uwe # values in the environment. 56 1.7 uwe MKNATIVE_CONFIGURE_PRESET= \ 57 1.7 uwe ac_cv_prog_cc_cross=yes \ 58 1.7 uwe ac_cv_func_fork_works=yes \ 59 1.7 uwe ac_cv_func_strcoll_works=yes \ 60 1.7 uwe bash_cv_func_ctype_nonascii=yes \ 61 1.7 uwe bash_cv_func_sigsetjmp=present \ 62 1.7 uwe bash_cv_func_strcoll_broken=no \ 63 1.7 uwe bash_cv_must_reinstall_sighandlers=no 64 1.7 uwe 65 1.31 jmcneill CONFIGURE_ENV+= am_cv_func_iconv=no 66 1.31 jmcneill 67 1.17 hans # Recent versions of Solaris have ncurses, but they hide the lib in an 68 1.17 hans # odd directory. Prevent configure from finding the ncurses headers, 69 1.17 hans # Solaris curses is sufficient. 70 1.17 hans .if ${BUILD_OSTYPE} == "SunOS" 71 1.17 hans CONFIGURE_ENV+= ac_cv_header_ncurses_h=no \ 72 1.17 hans ac_cv_header_ncurses_ncurses_h=no \ 73 1.17 hans ac_cv_header_ncurses_term_h=no 74 1.17 hans .endif 75 1.17 hans 76 1.8 uwe # Disable sim unless it's known to work (configure's default is to 77 1.8 uwe # enable sim if supported). 78 1.8 uwe CONFIGURE_ARGS_SIM= 79 1.8 uwe .if \ 80 1.9 skrll ${MACHINE_CPU} != "powerpc" && \ 81 1.8 uwe ${MACHINE_CPU} != "powerpc64" 82 1.8 uwe CONFIGURE_ARGS_SIM+= --disable-sim 83 1.8 uwe .endif 84 1.8 uwe 85 1.2 nathanw native-gdb: .native/.configure_done 86 1.2 nathanw @echo 'Extracting GDB configury for a native toolchain.' 87 1.32 christos MAKE=${BUILD_MAKE:Q} ${HOST_SH} ${MKNATIVE} gdb \ 88 1.30 mrg ${.OBJDIR}/.native ${NEWCONFIGDIR} ${MACHINE_GNU_PLATFORM} \ 89 1.30 mrg ${GDB_MACHINE_ARCH} 90 1.2 nathanw 91 1.2 nathanw .native/.configure_done: ${_GNU_CFGSRC} ${.CURDIR}/Makefile 92 1.3 nathanw mkdir ${.OBJDIR}/.native 2>/dev/null || true 93 1.2 nathanw PATH=${TOOLDIR}/bin:$$PATH; export PATH; \ 94 1.32 christos (cd ${.OBJDIR}/.native && \ 95 1.32 christos ${MKNATIVE_ENV} ${HOST_SH} ${GNUHOSTDIST}/configure \ 96 1.4 nathanw --prefix=/usr \ 97 1.5 lukem --with-separate-debug-dir=/usr/libdata/debug \ 98 1.8 uwe ${CONFIGURE_ARGS_SIM} \ 99 1.2 nathanw --build=`${GNUHOSTDIST}/config.guess` \ 100 1.2 nathanw --host=${MACHINE_GNU_PLATFORM} \ 101 1.32 christos --target=${MACHINE_GNU_PLATFORM}) 102 1.32 christos PATH=${TOOLDIR}/bin:$$PATH; export PATH; \ 103 1.7 uwe (cd ${.OBJDIR}/.native && \ 104 1.32 christos ${MKENV_BUILD_MAKE} configure-host) && \ 105 1.32 christos (cd ${.OBJDIR}/.native/bfd && \ 106 1.32 christos ${MKENV_BUILD_MAKE} bfd.h bfdver.h) && \ 107 1.32 christos (cd ${.OBJDIR}/.native/gdb && \ 108 1.32 christos ${MKENV_BUILD_MAKE} init.c version.c) 109 1.2 nathanw @touch $@ 110 1.2 nathanw 111 1.2 nathanw clean: clean.native 112 1.2 nathanw clean.native: 113 1.2 nathanw -rm -r -f .native 114