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.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=unavailable version=3.3.2 spammy=UD:fm, installs, Hx-languages-length:997, 8 X-HELO: mail-qk0-f172.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=G8RIOEjUbaf7R/k1T/RiUHlcV7pkvrtHjNcaJ/80yUH039B8Ig4AGCQjqgQtLLly40 5sSFYxPbj1IkvMYljtLDM4ehT1Gm3B3KfCeLgpcD7b/7IQOfZcmXdZAllGhi92bUrXnc gBjo61EAJwcfsYxfg1uViJ/Qfr2Rh6TKek8CVKukPjOjmOqSP0aDw7YbWCWkc38i5mga SCutRTmO8Dv9XdtaFEPPqLuZnucR7NhUgAiO1AwHLUT5gIujESRFQ92CWTM/oPN7pFDc WvHs3O7HZp/m8YoLCTRdyr2Oqz6Di7xzfqKMGjk9vHYYuY2ePeeHPEGzem5mgkDkBogb maPQ== X-Gm-Message-State: AODbwcDAaVh62iUdsM+jCEJum/kd5LQ699Z/sDLoC/USQnBxwJoYSatp bmrmOipEhwu9UoX71+ZbS8aDi4fTtsPrr04= 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