From owner-svn-src-all@freebsd.org Thu Jul 30 11:46:29 2020 Return-Path: Delivered-To: svn-src-all@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 660863A267F; Thu, 30 Jul 2020 11:46:29 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (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 "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BHTC91xWNz4FGk; Thu, 30 Jul 2020 11:46:29 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qt1-f170.google.com (mail-qt1-f170.google.com [209.85.160.170]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id 1F6051E033; Thu, 30 Jul 2020 11:46:29 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qt1-f170.google.com with SMTP id k18so20019324qtm.10; Thu, 30 Jul 2020 04:46:29 -0700 (PDT) X-Gm-Message-State: AOAM530H/p3Jyyxwrc8ei/sWyD1xRb894Bvqq5Wp3/em16dFe9entuzg HpWV74KJGFCtqjtcRXqN6UkajBVJLYDUJOp3/aE= X-Google-Smtp-Source: ABdhPJw1sGjIhtl9EqcIPKh2jDGc/QWqSw6ooSqpnEXN7TK+JZOZ71m0I7OKKnaK9dyZERe+KOwtB71saeO6PvJ5JDM= X-Received: by 2002:aed:2822:: with SMTP id r31mr2445337qtd.310.1596109588542; Thu, 30 Jul 2020 04:46:28 -0700 (PDT) MIME-Version: 1.0 References: <202007292321.06TNLuoq087451@repo.freebsd.org> <270c05f8-c75d-363f-c067-18c4c4773338@freebsd.org> In-Reply-To: <270c05f8-c75d-363f-c067-18c4c4773338@freebsd.org> From: Kyle Evans Date: Thu, 30 Jul 2020 06:46:17 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r363679 - in head: contrib/netbsd-tests/lib/libc/regex/data lib/libc/regex To: =?UTF-8?B?U3RlZmFuIEXDn2Vy?= Cc: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jul 2020 11:46:29 -0000 On Thu, Jul 30, 2020 at 6:26 AM Stefan E=C3=9Fer wrote: > > Am 30.07.20 um 01:21 schrieb Kyle Evans: > [...] > > This change bumps the symbol version of regcomp to FBSD_1.6 and provi= des the > > old escape semantics for legacy applications, just in case one has an= older > > application that would immediately turn into a pumpkin because of an > > extraneous escape that's embedded or otherwise critical to its operat= ion. > > I get an error during make buildworld with option WITH_TESTS=3Dyes: > > =3D=3D=3D> usr.bin/bmake/tests (install) > ld-elf.so.1: /usr/src/amd64.amd64/tmp/legacy/usr/sbin/make: Undefined > symbol "regcomp@FBSD_1.6" > > Regards, STefan Hi, Can you describe the environment in which you're running installworld, please? i.e. is it just a raw installworld directly in your shell, or something more complicated? I observed this in testing an exceptional scenario; running installworld in a buildenv. installworld injects .WAIT between lib and libexec + other subdirs, which is supposed to prevent stuff like this (new binary got installed linked against new libc before new libc). Running in a buildenv set SYSROOT and stripped out the .WAITs, leaving me with an annoyance where I had to installworld twice. Thanks, Kyle Evans