delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2017/08/23/17:39:28

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:message-id:from:to:subject
:content-type:date:content-transfer-encoding; q=dns; s=default; b=
N5Su6mGemBvwnZkZqC+aszzReL8U+5n1uwrcHFgORMe6nJNP10JF9mS8wwUcDla/
LPE58HbbekPBds10dsmLE+4W96DefWy7iT0QndT7VZpyWiikh6ACW7gSgmna30cI
IawgXplDgMkyVi8yzvJlmSghGleVFRmdq8gRmKycPhY=
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:message-id:from:to:subject
:content-type:date:content-transfer-encoding; s=default; bh=6np4
iFXAAQKPaHrEPiNZGKkkdmw=; b=IXOWmfk7FwnQ1FQPmQP1+AScEsU5wsgHaD7s
vCFV/FoKCD+Uh9aTA9ecywBL8eZVXcxpaEsxrMQ2ohmrugMsJwJNGH/DLWH6Lz/R
spHL2EOHENlny4oeRhcDw5UGrxYm1qhQeOLi///VD/GZHK684aF93mfM/KnBc53f
U2P5wZQ=
Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
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=-0.9 required=5.0 tests=AWL,BAYES_05,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy=HSensitivity:Normal, Hx-languages-length:1473, H*MI:app, H*M:app
X-HELO: mout.web.de
MIME-Version: 1.0
Message-ID: <trinity-28ebbc2f-8902-45b1-aebd-ea52cc253f3b-1503524348648@3c-app-webde-bap32>
From: nobodyO AT web DOT de
To: cygwin AT cygwin DOT com
Subject: Strange errors with gcc and top, even after rebaseall
Date: Wed, 23 Aug 2017 23:39:08 +0200
Sensitivity: Normal
X-UI-Out-Filterresults: notjunk:1;V01:K0:c2m+6IG7oQU=:13DaOPGZYwZtUoti+zk+62 VkxrfNrJIEx35fLlahPBhtqxnVKFvre1exAi3jfYlpsABvxyf6N/14z02A9ga0A02tO3vbKnn bE4EQxtTiIG99rlg94pSgxn1pcwG/DvQEG2FNEN70sxlAZE8uidd4ZMVTvziD4hH7WtOL+lpu RediBlewtkfBHYKD+bJTgT5ocfngDi1rnA2YBZOhNmRkz7zh9Ccf+CnL87OESZtPm5qMxbY8m dIhuWK2LWAw6+Qe18hCpuMOgfPiy+CCuAlF67LMqWfTZp4713hegHzSTAoVwvX/55ZJytlIkL uqhha/rd/yneAAh0xrB2z/eIULMSnoeP5fgiO8jzcG5D/vOUPFNSW7SuKCjWl8fsP8enscYqY UaVHEsdhUs1TMNEa+RQK+YmoRQR4q+12XWhE+abhDE6YvhIXHDeb50LeppROs3gx9K0dgBCsr PAfTUV9SsNT7DPfjgJllyEvttEWIvm81NWO8nfWZ3ycF6YxaCg3y
X-IsSubscribed: yes
X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id v7NLdQ9q019038

Hi,
 

i had some strange errors with Cygwin (32bit) and installed it new (all, every package), but even after "/usr/bin/rebase-trigger full" and setup two errors are remaining:
 
1.) top does exit at startup with return code -1. Afterwards everything entered is black, as the background, and backspace is displayed as quadgraph "\177".
 
2.) Linking is not possible, even with a small hello world program:

> make
gcc -o hello.exe hello.o
/usr/lib/gcc/i686-pc-cygwin/5.4.0/../../../../i686-pc-cygwin/bin/ld: unrecognized option '-plugin'
/usr/lib/gcc/i686-pc-cygwin/5.4.0/../../../../i686-pc-cygwin/bin/ld: use the --help option for usage information
collect2: Fehler: ld gab 1 als Ende-Status zurueck
make: *** [makefile:6: hello.exe] Fehler 1

 > gcc -fno-use-linker-plugin -o hello.exe hello.o
/usr/lib/gcc/i686-pc-cygwin/5.4.0/../../../../i686-pc-cygwin/bin/ld: unrecognized option '--build-id'
/usr/lib/gcc/i686-pc-cygwin/5.4.0/../../../../i686-pc-cygwin/bin/ld: use the --help option for usage information
collect2: Fehler: ld gab 1 als Ende-Status zurueck

> cat makefile
TARGET    = hello.exe
OBJECT_01 = hello.o
SOURCE_01 = hello.c
$(TARGET): $(OBJECT_01)
        gcc -o $(TARGET) $(OBJECT_01)
$(OBJECT_01) : $(SOURCE_01)
        gcc -c $(SOURCE_01) -o $(OBJECT_01)
all : $(TARGET)
clean :
        -rm $(TARGET) $(OBJS)
 

What should i do to eleminate these errors?
 
Regards,
 
Rolf

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


- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019