From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15498 invoked by alias); 28 Sep 2016 01:00:58 -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 15461 invoked by uid 89); 28 Sep 2016 01:00:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.1 required=5.0 tests=BAYES_00,EXECUTABLE_URI,FREEMAIL_FROM,KAM_EXEURI,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=cygcheck, UD:mirror.constant.com, UD:cygwin.mirror.constant.com, cygwinmirrorconstantcom X-HELO: mail-it0-f52.google.com Received: from mail-it0-f52.google.com (HELO mail-it0-f52.google.com) (209.85.214.52) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 28 Sep 2016 01:00:45 +0000 Received: by mail-it0-f52.google.com with SMTP id u134so58696194itb.1 for ; Tue, 27 Sep 2016 18:00:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:content-transfer-encoding:mime-version :subject:message-id:date:cc:to; bh=oduw9CJfkSFHPcqZRvx6T+eRvz5finhGQuIWSPek0SM=; b=ky2GWOgWNYP9admWP3IVUB1iwcbZdSWL0cuLBASoAfllR7O6/lJsGDPSFRlysfijaQ PE/q0I3JuCk1DgnirhPjWtr/YVweNBVejkxIc4t0UhHnvrYEdEzxajs8XiIGofnNXe+P dR8axiYmWVAKSjcOeMFWOPtm+hti2cyNf4Wu+JD/hAY5qq6faYGZQ6t7Lw0kIIPx4Ejo pjfJB5tnTosvTVVDMUD4Z2I/+N8xNmuzJZhh65Nh7UxmNVTRM3pD2Zcv2FGsi6zHWkE6 QLwJroPzr7cvOoQu7Ij2JG6w9wUxriYnPeb4JdjD0b34a7PKBqjtCIWz8A6+Aq/zFz9r +zfA== X-Gm-Message-State: AA6/9RmhKVjlFWO93tCdikh9/BjTOTduT3G3UkC8baEt5hjwFbrF2hF/jvuT//Q3fntAiQ== X-Received: by 10.36.69.79 with SMTP id y76mr8284406ita.49.1475024443640; Tue, 27 Sep 2016 18:00:43 -0700 (PDT) Received: from [10.0.1.2] (c-71-196-147-191.hsd1.co.comcast.net. [71.196.147.191]) by smtp.gmail.com with ESMTPSA id l65sm1954029ioi.9.2016.09.27.18.00.42 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 27 Sep 2016 18:00:43 -0700 (PDT) From: Rian Quinn Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Mac OS X Mail 10.0 \(3226\)) Subject: CMake "command not found" on Windows Server 2012 R2 Message-Id: <2451A58E-48C6-4E44-9D43-CD0FCF877511@gmail.com> Date: Wed, 28 Sep 2016 03:33:00 -0000 Cc: tony@kelman.net To: cygwin@cygwin.com X-SW-Source: 2016-09/txt/msg00372.txt.bz2 Using the following AppVeyor script, attempting to run cmake returns =E2=80= =9Ccommand not found=E2=80=9D. If I run =E2=80=9Cwhich cmake=E2=80=9D, I ge= t =E2=80=9C/usr/bin/cmake=E2=80=9D, so it=E2=80=99s there. If I compile cma= ke manually it works fine (using the same 3.6.2). As a not, CMake seems to = work fine on Windows 10.=20 Here is the script so that others can repro the issue: ------------------------------------------ environment: global: CYG_ROOT: C:\cygwin64 CYG_MIRROR: http://cygwin.mirror.constant.com CYG_CACHE: C:\cygwin64\var\cache\setup CYG_BASH: C:\cygwin64\bin\bash cache: - '%CYG_CACHE%' install: - ps: 'Start-FileDownload "https://cygwin.com/setup-x86_64.exe" -FileNa= me "setup-x86_64.exe"' - 'setup-x86_64.exe --quiet-mode --no-shortcuts --only-site --root "%CY= G_ROOT%" --site "%CYG_MIRROR%" --local-package-dir "%CYG_CACHE%" --packages= cmake' - '%CYG_BASH% -lc "cygcheck -dc cygwin"' build_script: - 'echo Building...' - '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; which cmake"' - '%CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; cmake"=E2=80=99 branches: only: - master test: off -- 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