From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53108 invoked by alias); 26 Jan 2017 11:17:56 -0000 Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org Received: (qmail 52875 invoked by uid 89); 26 Jan 2017 11:17:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy= X-HELO: mail-wm0-f54.google.com Received: from mail-wm0-f54.google.com (HELO mail-wm0-f54.google.com) (74.125.82.54) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 26 Jan 2017 11:17:52 +0000 Received: by mail-wm0-f54.google.com with SMTP id d140so4151577wmd.0 for ; Thu, 26 Jan 2017 03:17:51 -0800 (PST) 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=kOAgOC6u+azT5WCmmEjYF3/U8SfhDElZU1+eGO+cfBE=; b=bO6+X7wdrWml7ZrbcWbQqcmmCnLLJQraV/auGFLoBGSbZrqF8aYSR4cMKWTZPGZrK6 TRgbwOERaX0JVSLtvW97D95ZgYsxkvZI9WghvswivafL6/k23bvGyF5FAaVDs7JrX1Xu JEPfvTOwh1znLG31UkpSDtWraZjAWG1rZ7V76gFR0Wu0uLW5NgIapr+hiL3SMDWvvJ0r LgzgN551I5N4b1xbeO9GiUXe5C+q7FIC07F6B2/+7LfSY2D4rf15rd4Bsqs6fw0fcjlc cDwPVNxZT2pdqUH94PNEDWQl6bU2HOAgSBXXik35Mrc+iIdPD9pJb9gkDRFAj9/l7EJ0 yCzA== X-Gm-Message-State: AIkVDXKSruSrMSDPQ3Qfu0YlhaoQ17OekTbcC8P1XW8HJtPMjZLgD9g65dIlfa3Im3aGAoZ+YRxVS3BgGDsbVg== X-Received: by 10.223.151.99 with SMTP id r90mr2032185wrb.183.1485429469995; Thu, 26 Jan 2017 03:17:49 -0800 (PST) MIME-Version: 1.0 Received: by 10.80.166.156 with HTTP; Thu, 26 Jan 2017 03:17:29 -0800 (PST) From: Arkady Date: Thu, 26 Jan 2017 11:17:00 -0000 Message-ID: Subject: Re: trouble with installation of systemtap3-0 on Ubuntu 14.04 To: systemtap@sourceware.org Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2017-q1/txt/msg00056.txt.bz2 Hi, This thread is probably the closest to the problem I experience. I need --monitor support in the stap. I am trying to compile the 3.0 release On my Ubuntu 4.4.0-59-generic pkg-config --exists --print-errors "json-c >= 0.12";echo $? pkg-config --exists --print-errors "ncurses";echo $? both return zero I checked the ./configure and decided to run with PKG_CONFIG=/usr/bin/pkg-config ./configure --prefix=/home/arkady/systemtap/ Without PKG_CONFIG=/usr/bin/pkg-config ./configure fails to discover json-c and ncurses. I got 'yes' for both json-c and ncurses. The link (?) fails though make[3]: Entering directory '/home/arkady/systemtap-3.0/staprun' CCLD stapio monitor.o: In function `comp_name': /home/arkady/systemtap-3.0/staprun/monitor.c:151: undefined reference to `json_object_object_get_ex' I have ./lib/x86_64-linux-gnu/libjson.a and the library contains json_object_object_get_ex ................... What am I missing? Thanks.