| www.delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-SWARE-Spam-Status: | No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,T_TO_NO_BRKTS_FREEMAIL |
| X-Spam-Check-By: | sourceware.org |
| Message-ID: | <4E7736B0.9090905@gmail.com> |
| Date: | Mon, 19 Sep 2011 14:33:52 +0200 |
| From: | Marco atzeri <marco DOT atzeri AT gmail DOT com> |
| User-Agent: | Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20110902 Thunderbird/6.0.2 |
| MIME-Version: | 1.0 |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: gcc invoked from make on cygwin strips symbols from object file |
| References: | <20110919120156 DOT 3862e95f AT mail DOT altenpts DOT nl> |
| In-Reply-To: | <20110919120156.3862e95f@mail.altenpts.nl> |
| X-IsSubscribed: | yes |
| 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 |
On 9/19/2011 2:01 PM, André Kwakernaak wrote:
> cccHi all,
>
> I'm porting an application from a Linux environment to Cygwin. During this process I encountered the following: it seems that invoking gcc from a Makefile behaves differently over gcc being invoked directly from the command line. When ggc is invoked from within a Makefile, symbols are stripped from the object file. When gcc is invoked with exactly the same arguments, the symbols remain in the object file.
>
> I've made a small test case, narrowing the problem down.
>
> Consider a C file containing the following:
> cyg
> #include<stdio.h>
>
> void hello()
>
> {
>
> printf("Hello world\n");
>
> }
>
> and a Makefile:
> hello.o:
> gcc -c hello.c
>
> clean:
> rm -f *.o *.d *.exe
>
> When I run make an object file is build. The output of "nm hello.o" displays:
> 00000000 b .bss
> 00000000 d .data
> 00000000 t .text
this looks unlikely as hello.c miss the definition of printf
>
> If I run "gcc -c hello.c" directly from the command line I get object file for which nm displays:
> 00000000 b .bss
> 00000000 d .data
> 00000000 r .rdata
> 00000000 t .text
> 00000000 T _hello
> U _printf
>
> As you can see in the latter case the expected symbols are in the object file.
> Why are they missing when using the Makefile? I can't get my head
around it.
>
> I'm on Cygin 1.7.9, gcc 3.4.4, make 3.81
>
> Any help is greatly appreciated.
>
> André Kwakernaak
is make the cygwin one ?
$ make --version
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for i686-pc-cygwin
$ which make
/usr/bin/make
--
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
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |