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