From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ed1-x52c.google.com (mail-ed1-x52c.google.com [IPv6:2a00:1450:4864:20::52c]) by sourceware.org (Postfix) with ESMTPS id 327AC3858D35 for ; Sun, 30 Jul 2023 11:58:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 327AC3858D35 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-ed1-x52c.google.com with SMTP id 4fb4d7f45d1cf-5227e5d9d96so4730965a12.2 for ; Sun, 30 Jul 2023 04:58:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1690718318; x=1691323118; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=leWo3lsd1yuKGnpxAvElN7Xmodb8hVQZXUgep488Dfw=; b=EjonthEdZQXZqtnaqgHKKILLJQcT4jQshZtSbnEN3EhV1CeuBUrYyVPw1WyEzbe0AO 1s6dQinNvnYhXJbs+SBmdujnwtcPHZepIMGVUfMU963FekXHmDUUBvoBiKCVUF3R9iI2 CnYu+P5XCWmtRpWoGDcn26emdV+xwerattu6uyP6kvtMD+ljkKkErCwD2u3Tcct88gcT A36x/xG33uNBaud7veZS1h4WyxBPhbD4NvFNAyTPfOg2Q9TFs9FRw1YsKs9vqZIn2pSn nBDVRSq5ZYLcn0ImNtWWGVTc6NBp6kuGaMhNIKcfjnctiQ5CxM/08m5arHpEK64TL4KD D0XQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1690718318; x=1691323118; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=leWo3lsd1yuKGnpxAvElN7Xmodb8hVQZXUgep488Dfw=; b=YD1Of/e+1KuKO4J0BC/ZhbjPiZ/1NwgGS9ztXszKMoKfxBNArmoPvuiXCKjyicohus Y0FfdkeOy138ue0+Abbq35WNfAWm1kizPei06Gqcr7i1HxLdg6Ds1t2JCLuOY7I6Ygl8 tXKwFd3RI4jNqrq9ZyAz5g7AoDAOkpEjrT4VPnZrm/zpBNJYoCI87uzGBI5YcM0eWccl nKlb6TB5Na+s6Sdv4P5aBV7SyF/hRW4LZwKNCQrY6Ev6wMAC7UoWSBH5YndH2ImeYSaa e3H7WzgaRRzPWkgdngBlwTjRKfS/B3r7FGWE2CQ3jOKFTG8MAS/bpXl6rel/NtTXlU+q 03sw== X-Gm-Message-State: ABy/qLaZfUTukzdCc1N9enVv8ndVrqDiAeuoqPnIGx6yjz/lC0BTVPGb aStjoxT1VgVpwsMYE70ivCI6gEQ5+tipjPmIv85baZYUbo0= X-Google-Smtp-Source: APBJJlEYEByqYr1XH8ySNelFdK0Od3CzWaCW8A9P8LxUWmNw1IBQa1BbF81vIo8gfC7Iq3Sai1cOMmFogUC55S2MWPc= X-Received: by 2002:aa7:d712:0:b0:522:946b:4e46 with SMTP id t18-20020aa7d712000000b00522946b4e46mr5931088edq.24.1690718317518; Sun, 30 Jul 2023 04:58:37 -0700 (PDT) MIME-Version: 1.0 From: Vincent Fortier Date: Sun, 30 Jul 2023 07:58:26 -0400 Message-ID: Subject: tools only installation? To: libc-help@sourceware.org Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi, Currently maintaining a SynoCommunity development package with a set of various tools including compilers. One thing I'd really much like to add is ldd, as everything being cross-compiled, having a native ldd would be helpful to check shared libraries relationships directly from its installed destination. So I've been playing with glibc to cross-compile it, which now works. Although I now have two remaining issues: 1. I can't find a way to install only the set of glibc tools, without the entire library or any include files? Focus being in particular to ldd. 2. Presumably in lack of a solution for item 1, when invoking glibc build after my other set of tools already built in planning to generate a resulting package, glibc ends-up colliding with the already installed gmp.h include file, coming from binutils who required gmp as dependency. I'm presuming I should not build glibc first as everything else will be bound to that newer version of glibc instead of the one provided by the Synology toolchain. github PR: https://github.com/SynoCommunity/spksrc/pull/5824 Help or pointers would be really much appreciated. Thnx in advance. Vincent Fortier