From owner-svn-src-all@freebsd.org Thu May 21 13:02:21 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 23DF72CF380; Thu, 21 May 2020 13:02:21 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-qv1-f66.google.com (mail-qv1-f66.google.com [209.85.219.66]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49SVC061f3z3StQ; Thu, 21 May 2020 13:02:20 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by mail-qv1-f66.google.com with SMTP id z5so3009730qvw.4; Thu, 21 May 2020 06:02:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=OjMwOs/Lvs1aikdqR/RwTzkREBYkgubMU4hxEdaoVGc=; b=oST/RD4RhoUIHxhvU23ns/EMyVsvF0jmwE24VCL6E18MI0B9zKEni3jt1/M0DD53it eNSBJR5YjM17qKZ/f4DyhH/s5k/XC0q18xfBF7VNR1AL9S6MIeldcK5PYeuD4gyoXhfk y7e0OjT8Y0Rl2eho84hJdEFNOtRW2ydUd54WA2LMZJNl6SZQ7wA1VaPRblumCEpZsTva I3Yx3eC3dGuEFgzh3MZsnDvGNWc79rcmdiDVl/LSheWL+160m7avQudTxWkO8ZPHZuM7 6bgadtkZNF1yzKYVblp+zdQR1Cr+KGy4zu49QBMDg9PRbPkYxrw8aqJu0booEPw6gulT oSmA== X-Gm-Message-State: AOAM530fLs6jNUot/Fsp1helumlPg45oe4tmP8TN3hLJtod+7svMGBxA DZ0Ikt9snpkUr7uYTCZ3h+4J+OTXYb4ugSK0gfKh+F2Q X-Google-Smtp-Source: ABdhPJwEbyC1XV22YmR21smLm/wF/WCncyR+bgE09wWWWrdVEkhqGFNlBD5XlXHCjyUwSk4OmOv1Ghe6xsLJZef0qZI= X-Received: by 2002:ad4:58cb:: with SMTP id dh11mr5857329qvb.211.1590066139393; Thu, 21 May 2020 06:02:19 -0700 (PDT) MIME-Version: 1.0 References: <202005202208.04KM8QPA020707@repo.freebsd.org> In-Reply-To: <202005202208.04KM8QPA020707@repo.freebsd.org> From: Antoine Brodin Date: Thu, 21 May 2020 15:02:07 +0200 Message-ID: Subject: Re: svn commit: r361303 - in head: lib/libc/gen libexec/rtld-elf sys/sys To: Konstantin Belousov Cc: src-committers , svn-src-all , svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 49SVC061f3z3StQ X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; ASN(0.00)[asn:15169, ipnet:209.85.128.0/17, country:US]; TAGGED_FROM(0.00)[]; REPLY(-4.00)[] 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, 21 May 2020 13:02:21 -0000 On Thu, May 21, 2020 at 12:08 AM Konstantin Belousov wrote: > > Author: kib > Date: Wed May 20 22:08:26 2020 > New Revision: 361303 > URL: https://svnweb.freebsd.org/changeset/base/361303 > > Log: > Change the samantic of struct link_map l_addr member. > > It previously returned the object map base address, while all other > ELF operating systems return load offset, i.e. the difference between > map base and the link base. > > Explain the meaning of the field in the man page. > > Stop filling the mips-only l_offs member, which is apparently unused. > > PR: 246561 > Requested by: Damjan Jovanovic > Reviewed by: emaste, jhb, cem (previous version) > Sponsored by: The FreeBSD Foundation > MFC after: 1 week > Differential revision: https://reviews.freebsd.org/D24918 > > Modified: > head/lib/libc/gen/dlinfo.3 > head/libexec/rtld-elf/rtld.c > head/sys/sys/link_elf.h Hi, After this commit, some ports fail to build with signal 11. For instance lang/perl5.30 fails to build with default options (DTRACE on) Disabling the DTRACE option makes it able to build again. Cheers, Antoine