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