From owner-svn-src-head@freebsd.org Tue Dec 15 18:12:04 2020 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E89504BDE03; Tue, 15 Dec 2020 18:12:04 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CwRDN6Km1z4gbK; Tue, 15 Dec 2020 18:12:04 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CC51A187FC; Tue, 15 Dec 2020 18:12:04 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BFIC489013288; Tue, 15 Dec 2020 18:12:04 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BFIC4x5012838; Tue, 15 Dec 2020 18:12:04 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <202012151812.0BFIC4x5012838@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Tue, 15 Dec 2020 18:12:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r368669 - in head: . gnu/lib share/mk X-SVN-Group: head X-SVN-Commit-Author: emaste X-SVN-Commit-Paths: in head: . gnu/lib share/mk X-SVN-Commit-Revision: 368669 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Dec 2020 18:12:05 -0000 Author: emaste Date: Tue Dec 15 18:12:03 2020 New Revision: 368669 URL: https://svnweb.freebsd.org/changeset/base/368669 Log: Remove additional GDB leftovers missed in r368667 Modified: head/Makefile.inc1 head/gnu/lib/Makefile head/share/mk/src.opts.mk Modified: head/Makefile.inc1 ============================================================================== --- head/Makefile.inc1 Tue Dec 15 17:52:04 2020 (r368668) +++ head/Makefile.inc1 Tue Dec 15 18:12:03 2020 (r368669) @@ -761,7 +761,7 @@ TMAKE= \ XMAKE= ${BMAKE} \ TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ MK_CLANG_IS_CC=${MK_CLANG_BOOTSTRAP} \ - MK_GDB=no MK_TESTS=no + MK_TESTS=no # kernel-tools stage KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ @@ -2729,7 +2729,6 @@ NXBMAKEARGS+= \ MK_CLANG_FULL=no \ MK_CTF=no \ MK_DEBUG_FILES=no \ - MK_GDB=no \ MK_HTML=no \ MK_LLDB=no \ MK_MAN=no \ Modified: head/gnu/lib/Makefile ============================================================================== --- head/gnu/lib/Makefile Tue Dec 15 17:52:04 2020 (r368668) +++ head/gnu/lib/Makefile Tue Dec 15 18:12:03 2020 (r368669) @@ -6,7 +6,7 @@ SUBDIR= SUBDIR.${MK_DIALOG}+= libdialog SUBDIR.${MK_TESTS}+= tests -.if ${MK_GNU_GREP} != "no" || ${MK_GDB} != "no" +.if ${MK_GNU_GREP} != "no" SUBDIR+= libregex .endif Modified: head/share/mk/src.opts.mk ============================================================================== --- head/share/mk/src.opts.mk Tue Dec 15 17:52:04 2020 (r368668) +++ head/share/mk/src.opts.mk Tue Dec 15 18:12:03 2020 (r368669) @@ -206,7 +206,6 @@ __DEFAULT_NO_OPTIONS = \ CLANG_FORMAT \ DTRACE_TESTS \ EXPERIMENTAL \ - GDB \ GNU_GREP \ HESIOD \ LIBSOFT \ @@ -289,10 +288,6 @@ __DEFAULT_NO_OPTIONS+=LLVM_TARGET_BPF .include -# In-tree gdb is an older versions without modern architecture support. -.if ${__T} == "aarch64" || ${__T:Mriscv*} != "" -BROKEN_OPTIONS+=GDB -.endif .if ${__T:Mriscv*} != "" BROKEN_OPTIONS+=OFED .endif @@ -481,7 +476,6 @@ MK_LLD_BOOTSTRAP:= no .if ${MK_TOOLCHAIN} == "no" MK_CLANG:= no -MK_GDB:= no MK_INCLUDES:= no MK_LLD:= no MK_LLDB:= no