From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 69792 invoked by alias); 21 Jun 2018 19:04:53 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Received: (qmail 69783 invoked by uid 89); 21 Jun 2018 19:04:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.1 required=5.0 tests=AWL,BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=no version=3.3.2 spammy=H*r:sk:crossgc, H*r:5a4f, H*r:a17, HX-HELO:sk:mail-pf X-HELO: mail-pf0-f177.google.com Received: from mail-pf0-f177.google.com (HELO mail-pf0-f177.google.com) (209.85.192.177) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 21 Jun 2018 19:04:52 +0000 Received: by mail-pf0-f177.google.com with SMTP id a11-v6so1971234pff.8 for ; Thu, 21 Jun 2018 12:04:51 -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:from:date:message-id:subject:to; bh=tvUz24ptpN8gpWQjEQCZMnS57TTLNwGXuIxQeckg/sQ=; b=s5kziRrBHteuhDvminQdOkaLqhpZmEhqXlYh21erdUBW9Z0pyUqA3fv0pzloxDRysZ t97JHwpDH/0jCPCHKICDTTkdFuHEewAjMBoLYtUdGitA1PAZqWBYxcR7xpOWSjw69qHC P3YX/xHLSl60C7hsg5iZ94qku0I2sShtcZPVjMS/nOyNr+Yr9BH4b8ewP4YTRpoeTdFv yMR/ssfu8IMJ3AiOaxNzgN9Z9aBEODQPiOE4H6b/UzxXEUJklX3vb2GtscUgxwA3DKMJ Vvwa//wO3Acvdrw8nqxhhhC6whBiR2FGQn7+jKxSwpsFRi4bF3iqivnsf74u7DGOdF2e 0fcw== X-Gm-Message-State: APt69E07/aKjb4vD55BdWQEbr5lNoaTtQzbA83Edr9FDqYTJL1ShByxt G4WFeFsSat3oL6x+NuzcO0Cru30VPQvlERm3qXOdee9S X-Google-Smtp-Source: ADUXVKLOZ3SzdUTXQZhZdOPZWAjJn1T3/G0bMzSP7yaP5Z3rNuNhEFtqYVPFNcaZQaRNjS/JG8scNoajxoso5q/iBII= X-Received: by 2002:a62:d653:: with SMTP id r80-v6mr28649888pfg.54.1529607890169; Thu, 21 Jun 2018 12:04:50 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a17:90a:5a4f:0:0:0:0 with HTTP; Thu, 21 Jun 2018 12:04:49 -0700 (PDT) From: Justin Chen Date: Thu, 21 Jun 2018 19:04:00 -0000 Message-ID: Subject: cross-pkg-config support To: crossgcc@sourceware.org Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2018-06/txt/msg00003.txt.bz2 Hello, Looks like crosstool-ng doesn't support a cross-pkg-config wrapper script. (Unless I am missing it). Is this something that sounds reasonable to support? I assume it'll look something like this. https://github.com/raspberrypi/tools/blob/master/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian/bin/arm-linux-gnueabihf-pkg-config I believe the last line... exec "$0-real" "$@" could be replaced with... exec pkg-config "$@" Then we will not need a pkg-config-real binary. Thoughts on this? Thanks, Justin