From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 129401 invoked by alias); 24 Nov 2019 18:13:47 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 129326 invoked by uid 89); 24 Nov 2019 18:13:46 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-17.4 required=5.0 tests=AWL,BAYES_00,ENV_AND_HDR_SPF_MATCH,RCVD_IN_DNSWL_NONE,SPF_PASS,USER_IN_DEF_SPF_WL autolearn=ham version=3.3.1 spammy=regex, HX-Languages-Length:791 X-HELO: mail-oi1-f194.google.com Received: from mail-oi1-f194.google.com (HELO mail-oi1-f194.google.com) (209.85.167.194) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 24 Nov 2019 18:13:45 +0000 Received: by mail-oi1-f194.google.com with SMTP id l20so11042580oie.10 for ; Sun, 24 Nov 2019 10:13:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=8ONyL+D+OtH8T7FyJlPyx/FM3owPKlSBz1c34SKuVf8=; b=RszxxAqb9pLLAnLGc+1lc5OhhSyAmRfvsFPfg5qFfcG67NCuWnvosMFOVCIvvZNJgD 3n17XH/jF1ZToHoCOGjMree569SRYof+B6CBvYcYJPzvVpg8Cd4slbk3VQbjGrKaVd00 6JBscpRNv3zWJI0xy2/Ndc60MQJSvzsoOLi2nnhnru8jU0jqF97MWKWaHuWL3WzqvDhG QX/NFsGYm6WaB7dm5kJafkcQxI3VYoLpzpfljDQKgXM/L6C1ZVDxSv10ZB8vTda6naxE eBo30luW06f/lzrf+lu0f6riQsJ0PyuC8DK6SANz3Otd4kQ90VnB9/LwfDy27WqMdFUP r3yQ== MIME-Version: 1.0 References: <20181128001435.12703-1-tom@tromey.com> <20181128001435.12703-16-tom@tromey.com> <87tv6tmat0.fsf@tromey.com> In-Reply-To: <87tv6tmat0.fsf@tromey.com> From: "Christian Biesinger via gdb-patches" Reply-To: Christian Biesinger Date: Sun, 24 Nov 2019 18:13:00 -0000 Message-ID: Subject: Re: [PATCH 15/16] Highlight source code using GNU Source Highlight To: Tom Tromey Cc: Andrew Pinski , GDB Patches Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-11/txt/msg00796.txt.bz2 On Sun, Nov 24, 2019 at 11:41 AM Tom Tromey wrote: > > Andrew> I know this patch has been in for almost a year now. But I have a > Andrew> question, is there a way to build GNU Source Highlight as a static > Andrew> library and have it built at the top level? Like what is done for > Andrew> GMP/MPFR for GCC? It would reduce how I built a gdb that is for a > Andrew> non-native target. > > There's currently no support for dropping the sources into the tree. > However, I think it would be fine if you wanted to add such support. Note that the source highlight library depends on boost_regex and ICU, according to ldd, so that might make this harder? (I wonder why it doesn't use std::regex) Christian