From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 104449 invoked by alias); 29 May 2017 06:46:53 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 104335 invoked by uid 89); 29 May 2017 06:46:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=Hx-languages-length:997, 8, UD:php, index.php X-HELO: mail-qk0-f180.google.com Received: from mail-qk0-f180.google.com (HELO mail-qk0-f180.google.com) (209.85.220.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 29 May 2017 06:46:51 +0000 Received: by mail-qk0-f180.google.com with SMTP id a72so41814308qkj.2 for ; Sun, 28 May 2017 23:46:54 -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=eXk+rd4RJpKo3FdlOCfuB4TD/COg+he7uZFbpJMKGT8=; b=Efyzj5LQ1YesC7IebwQt6l6+cvVysFJN83Sq16wbBrujjkPmpKmMTOxbem6OVbXci5 EPPfXiuT3t5gOXz3Hqgqqfw0aWrFglipkKkXMy35/aHirOWL0ESG7r/mZXw/kNM5JkUL HN7Ss5+SktTelgabypNUqx/74HBs89jEYkfRIb5HU28SeOitSQr5nXpej8sgt0T941C4 XxpdKs+IHLLY9+DVPr9AAfZ+9yWD7lNAjlyZ9KCOBkZaQjv/ZwFcln5V5oBjTEsplXto QipOYZz9x1ts0pRy43ldorxfBlaWLutB1pFJ+XhLFMPPldF5UJDnlXkCc6g9p4iH2vJb XtKw== X-Gm-Message-State: AODbwcCUC6Vf9EH/z3jV7dYMARHB0gIwJCVp7hAoQsSDYRRC4/5vzOJ6 xjZ6hxClv1VrZfBGLjKVIfvRnShcqO/YnEk= X-Received: by 10.55.4.139 with SMTP id 133mr7423948qke.204.1496039677650; Sun, 28 May 2017 23:34:37 -0700 (PDT) MIME-Version: 1.0 Received: by 10.12.145.235 with HTTP; Sun, 28 May 2017 23:34:36 -0700 (PDT) From: Daniel Fort Date: Mon, 29 May 2017 08:52:00 -0000 Message-ID: Subject: grep-3.0-2 issues within Makefile To: cygwin@cygwin.com Content-Type: text/plain; charset="UTF-8" X-SW-Source: 2017-05/txt/msg00466.txt.bz2 Message-ID: <20170529085200.HcyF5iFLbgnNF3Fipj6g8yhLMlxhpCbhfNyUxAdIhEY@z> grep-3.0-2 binary will not function as expected when the -v option is used in a Makefile. Resolution - downgrade to grep-3.0-1. When using Cygwin to build Magic Lantern users stated reporting a build errors on new Cygwin installs around November 2016. The resolution was to downgrade grep to the previous version. The discussion and instructions on how to prepare Cygwin to compile Magic Lantern are in this forum topic: http://www.magiclantern.fm/forum/index.php?topic=15894.msg154435#msg154435 Using a Cygwin install that includes the default grep-3.0-1 will result in errors when running the follow Makefile code: localsyms: libtcctmp.o @$(READELF) $< -Ws | $(AWK) "{print \$$8}" | sort | uniq \ | grep -v "^tcc_new$$" \ | grep -v "^tcc_delete$$" \ | grep -v "^tcc_add_file$$" \ | grep -v "^tcc_relocate$$" \ | grep -v "^tcc_get_symbol$$" \ | grep -v "^tcc_add_symbol$$" \ | grep -v "^tcc_set_options$$" \ | grep -v "^tcc_load_offline_section$$" \ > $@ -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple