public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
From: Andrey Repin <anrdaemon@yandex.ru>
To: Achim Gratz <Stromeko@nexgo.de>, cygwin@cygwin.com
Subject: Re: make command fails on cygwin-x86  (cyggmp-10.dll: Loaded to different address)
Date: Thu, 17 Mar 2016 13:05:00 -0000	[thread overview]
Message-ID: <8510131043.20160317160456@yandex.ru> (raw)
In-Reply-To: <878u1imb9q.fsf@Rainer.invalid>

[-- Attachment #1: Type: text/plain, Size: 503 bytes --]

Greetings, Achim Gratz!

> Tatsuro MATSUOKA writes:
>> However,I have no confidence that I kill all other cygwin-x86 process
>> at that time.  I will take care during cygwin setup process.

> Install procps and just issue "pkill ." in an admin shell (or make a
> shortcut for that) if you want to be sure.

That's a bit of a requirement. Considering this can be resolved with no external
packages.


-- 
With best regards,
Andrey Repin
Thursday, March 17, 2016 15:57:48

Sorry for my terrible english...

[-- Attachment #2: install-cygwin.sh.txt --]
[-- Type: text/plain, Size: 1505 bytes --]

#!/bin/sh

net session > /dev/null 2>&1 || {
  echo Not elevated.
  exit 1
}

# Cygwin upgrade helper script.
# Usage:
#
#   install-cygwin.sh [ ports ]
#
# If you intend to use it for new installs, you will need minimal bootstrap
# including POSIX shell interpreter and wget utility.
#
# You will have to edit the script to provide mirror URL of your choice.
#
# The script assumes existing installation of the same architecture as
# the host operating system.
# If you want to install 32-bit Cygwin on 64-bit host, override
# $ARCH with value other than "x86_64".
# F.e.
#
#   ARCH=x86 ./install-cygwin.sh

# Mirror URL - don't include trailing slash!
MIRROR="${MIRROR:-http://ftp-stud.hs-esslingen.de/pub/Mirrors/sources.redhat.com/cygwin}"

# System architecture.
ARCH="${ARCH:-$(uname -m)}"

# Localization is fine... as long as you don't show it to other people.
export LANG=C

if [ "$ARCH" != "x86_64" ]; then
  ARCH=x86
fi

# Crude test for other Cygwin processes running.
if [ "$1" != "--force" ]; then
  TTY=$(tty)
  test $(ps -al | grep -vE "\<${TTY##/dev/}\>" | wc -l) -gt 1 && {
    echo There\'s likely other processes running from Cygwin environment.
    echo Please stop them or use --force to suppress this test.
    exit 1
  }
else
  shift
fi

wget -N "http://cygwin.com/setup-${ARCH}.exe"

if [ "$1" = "ports" ]; then
  KEYS="-K http://cygwinports.org/ports.gpg -s ""${MIRROR%%/}ports/"
  shift
fi

./setup-${ARCH}.exe -O -s "${MIRROR%%/}/" $KEYS $* &

sleep 2
taskkill /IM "sh.exe" /F

[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

--
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

  parent reply	other threads:[~2016-03-17 13:05 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-16  0:22 Tatsuro MATSUOKA
2016-03-16  0:50 ` Andrey Repin
2016-03-16  1:46   ` Tatsuro MATSUOKA
2016-03-16  2:38     ` Tatsuro MATSUOKA
2016-03-16  9:42     ` Achim Gratz
2016-03-16 12:05     ` Andrey Repin
2016-03-16 13:50       ` Tatsuro MATSUOKA
2016-03-16 14:00         ` Achim Gratz
2016-03-16 19:54           ` Tatsuro MATSUOKA
2016-03-16 20:13             ` Achim Gratz
2016-03-16 23:38               ` Tatsuro MATSUOKA
2016-03-17 13:05               ` Andrey Repin [this message]
2016-03-18  0:15                 ` Tatsuro MATSUOKA

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8510131043.20160317160456@yandex.ru \
    --to=anrdaemon@yandex.ru \
    --cc=Stromeko@nexgo.de \
    --cc=cygwin@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).