X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:from:date:message-id:subject:to :content-type; q=dns; s=default; b=rFbmjHMzv+DNYgmZLvajgl44x38YG XCpduYzXYeVeu/MgyXNOlrL1n7y9ESGww2K8Ru+xpPixIfIc6KeH7CXdsLR/CSOa qExrcsmfC68TDa98iKR5xK55zxdkjHDZOwuBJlHtEoLKDv5f53LCqYLvi0Rfsnm9 jfL6/ojl3uLeD4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:from:date:message-id:subject:to :content-type; s=default; bh=VmOW96130xJkw5VYbW4u3twVQcw=; b=xiL O49mj1DlCuDBjVvtXRTHcHwypX+12cTjKO5/iFq/BeWrqObwghC7FvxWCrTjCt0i DwJMEyu4LE24MPBoxLPFSQMsF646XniNDCyBG0W1zoTMl8fuML43y9Z4QwBMvtqO VimMWt7ScWoWq6+dkQREBK5NgZO+faHk2xlg3TAs= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com 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 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 From: Daniel Fort Date: Sun, 28 May 2017 23:34:36 -0700 Message-ID: Subject: grep-3.0-2 issues within Makefile To: cygwin AT cygwin DOT com Content-Type: text/plain; charset="UTF-8" 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