public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* mno-cygwin and gcc-2.95.2
@ 1999-11-08 14:08 Inferno
  1999-11-08 22:31 ` Mumit Khan
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Inferno @ 1999-11-08 14:08 UTC (permalink / raw)
  To: help-gcc

I am currently using Mumit Khan's binary distribution of
gcc-2.95.2(thanks for making these).  When i try to do a mno-cygwin
compile i am getting errors.  Not the exact same errors i was getting
before though(shorter list this time).  I have attached the screen
capture.  Ideas?

Thanks,
Inferno
# cc -c -mno-cygwin -I/include test.cpp
# cc -o test -mno-cygwin -L/lib test.o
/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
`__mingwthr_key_dtor'
/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
`_CRT_MT' foll
ow
collect2: ld returned 1 exit status
# cc -o test -mno-cygwin -L/lib -B/lib/ test.o
/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
`__mingwthr_key_dtor'
/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
`_CRT_MT' foll
ow
collect2: ld returned 1 exit status
cc: file path prefix `/lib/' never used
# cc -c -mno-cygwin -I/include -B/include/ test.cpp
cc: file path prefix `/include/' never used
# cc -c -mno-cygwin -I/include -B/lib/ test.o
cc: file path prefix `/lib/' never used
cc: test.o: linker input file unused since linking not done
# cc -o test -mno-cygwin -L/lib -B/lib/ test.o
/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
`__mingwthr_key_dtor'
/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
`_CRT_MT' foll
ow
collect2: ld returned 1 exit status
cc: file path prefix `/lib/' never used
#

--
"Life is the whim of several billion cells to be you for a while."
                                            --Inferno


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: mno-cygwin and gcc-2.95.2
  1999-11-08 14:08 mno-cygwin and gcc-2.95.2 Inferno
@ 1999-11-08 22:31 ` Mumit Khan
  1999-11-30 23:28   ` Mumit Khan
  1999-11-08 23:13 ` Mumit Khan
  1999-11-30 23:28 ` Inferno
  2 siblings, 1 reply; 6+ messages in thread
From: Mumit Khan @ 1999-11-08 22:31 UTC (permalink / raw)
  To: help-gcc

In article < 382748FE.CC44E5AD@bcpl.net >, Inferno  <esheesle@bcpl.net> wrote:
>I am currently using Mumit Khan's binary distribution of
>gcc-2.95.2(thanks for making these).  When i try to do a mno-cygwin
>compile i am getting errors.  Not the exact same errors i was getting
>before though(shorter list this time).  I have attached the screen
>capture.  Ideas?
>
>Thanks,
>Inferno
># cc -c -mno-cygwin -I/include test.cpp
># cc -o test -mno-cygwin -L/lib test.o

>/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
>`__mingwthr_key_dtor'
>/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
>`_CRT_MT' foll
>ow
>collect2: ld returned 1 exit status

Thanks for the bug report. The missing symbol is new in the mingw
runtime to support thread-safe C++ exceptions.

I will check it out. Either I mispackaged mingw-extra package or
something else is fishy. BTW, I suggest you report these bugs
to Cygwin mailing list (and copy me as well). I don't read this
newsgroup unless I have some free time.

Regards,
Mumit

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: mno-cygwin and gcc-2.95.2
  1999-11-08 14:08 mno-cygwin and gcc-2.95.2 Inferno
  1999-11-08 22:31 ` Mumit Khan
@ 1999-11-08 23:13 ` Mumit Khan
  1999-11-30 23:28   ` Mumit Khan
  1999-11-30 23:28 ` Inferno
  2 siblings, 1 reply; 6+ messages in thread
From: Mumit Khan @ 1999-11-08 23:13 UTC (permalink / raw)
  To: help-gcc

In article < 382748FE.CC44E5AD@bcpl.net >, Inferno  <esheesle@bcpl.net> wrote:
>I am currently using Mumit Khan's binary distribution of
>gcc-2.95.2(thanks for making these).  When i try to do a mno-cygwin
>compile i am getting errors.  Not the exact same errors i was getting
>before though(shorter list this time).  I have attached the screen
>capture.  Ideas?
>
>Thanks,
>Inferno
># cc -c -mno-cygwin -I/include test.cpp
># cc -o test -mno-cygwin -L/lib test.o
>/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
>`__mingwthr_key_dtor'
>/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
>`_CRT_MT' foll
>ow
>collect2: ld returned 1 exit status

I had forgotten to add libmingw32 to the mingw-extra package, and just
updated it. Please redownload the gcc-2.95.2-mingw-extra.tar.gz
and let me know (via direct email please) if you still have problems.

ftp://ftp.xraylith.wisc.edu/pub/khan/gnu-win32/cygwin/gcc-2.95.2/

Regards,
Mumit

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: mno-cygwin and gcc-2.95.2
  1999-11-08 22:31 ` Mumit Khan
@ 1999-11-30 23:28   ` Mumit Khan
  0 siblings, 0 replies; 6+ messages in thread
From: Mumit Khan @ 1999-11-30 23:28 UTC (permalink / raw)
  To: help-gcc

In article < 382748FE.CC44E5AD@bcpl.net >, Inferno  <esheesle@bcpl.net> wrote:
>I am currently using Mumit Khan's binary distribution of
>gcc-2.95.2(thanks for making these).  When i try to do a mno-cygwin
>compile i am getting errors.  Not the exact same errors i was getting
>before though(shorter list this time).  I have attached the screen
>capture.  Ideas?
>
>Thanks,
>Inferno
># cc -c -mno-cygwin -I/include test.cpp
># cc -o test -mno-cygwin -L/lib test.o

>/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
>`__mingwthr_key_dtor'
>/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
>`_CRT_MT' foll
>ow
>collect2: ld returned 1 exit status

Thanks for the bug report. The missing symbol is new in the mingw
runtime to support thread-safe C++ exceptions.

I will check it out. Either I mispackaged mingw-extra package or
something else is fishy. BTW, I suggest you report these bugs
to Cygwin mailing list (and copy me as well). I don't read this
newsgroup unless I have some free time.

Regards,
Mumit

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: mno-cygwin and gcc-2.95.2
  1999-11-08 23:13 ` Mumit Khan
@ 1999-11-30 23:28   ` Mumit Khan
  0 siblings, 0 replies; 6+ messages in thread
From: Mumit Khan @ 1999-11-30 23:28 UTC (permalink / raw)
  To: help-gcc

In article < 382748FE.CC44E5AD@bcpl.net >, Inferno  <esheesle@bcpl.net> wrote:
>I am currently using Mumit Khan's binary distribution of
>gcc-2.95.2(thanks for making these).  When i try to do a mno-cygwin
>compile i am getting errors.  Not the exact same errors i was getting
>before though(shorter list this time).  I have attached the screen
>capture.  Ideas?
>
>Thanks,
>Inferno
># cc -c -mno-cygwin -I/include test.cpp
># cc -o test -mno-cygwin -L/lib test.o
>/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
>`__mingwthr_key_dtor'
>/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
>/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
>`_CRT_MT' foll
>ow
>collect2: ld returned 1 exit status

I had forgotten to add libmingw32 to the mingw-extra package, and just
updated it. Please redownload the gcc-2.95.2-mingw-extra.tar.gz
and let me know (via direct email please) if you still have problems.

ftp://ftp.xraylith.wisc.edu/pub/khan/gnu-win32/cygwin/gcc-2.95.2/

Regards,
Mumit

^ permalink raw reply	[flat|nested] 6+ messages in thread

* mno-cygwin and gcc-2.95.2
  1999-11-08 14:08 mno-cygwin and gcc-2.95.2 Inferno
  1999-11-08 22:31 ` Mumit Khan
  1999-11-08 23:13 ` Mumit Khan
@ 1999-11-30 23:28 ` Inferno
  2 siblings, 0 replies; 6+ messages in thread
From: Inferno @ 1999-11-30 23:28 UTC (permalink / raw)
  To: help-gcc

I am currently using Mumit Khan's binary distribution of
gcc-2.95.2(thanks for making these).  When i try to do a mno-cygwin
compile i am getting errors.  Not the exact same errors i was getting
before though(shorter list this time).  I have attached the screen
capture.  Ideas?

Thanks,
Inferno
# cc -c -mno-cygwin -I/include test.cpp
# cc -o test -mno-cygwin -L/lib test.o
/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
`__mingwthr_key_dtor'
/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
`_CRT_MT' foll
ow
collect2: ld returned 1 exit status
# cc -o test -mno-cygwin -L/lib -B/lib/ test.o
/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
`__mingwthr_key_dtor'
/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
`_CRT_MT' foll
ow
collect2: ld returned 1 exit status
cc: file path prefix `/lib/' never used
# cc -c -mno-cygwin -I/include -B/include/ test.cpp
cc: file path prefix `/include/' never used
# cc -c -mno-cygwin -I/include -B/lib/ test.o
cc: file path prefix `/lib/' never used
cc: test.o: linker input file unused since linking not done
# cc -o test -mno-cygwin -L/lib -B/lib/ test.o
/lib/libgcc.a(_eh.o)(.text+0xdf): undefined reference to
`__mingwthr_key_dtor'
/lib/libgcc.a(_eh.o)(.text+0x114): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x24): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x4f4): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x53c): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9d2): undefined reference to `_CRT_MT'
/lib/libgcc.a(frame.o)(.text+0x9fc): more undefined references to
`_CRT_MT' foll
ow
collect2: ld returned 1 exit status
cc: file path prefix `/lib/' never used
#

--
"Life is the whim of several billion cells to be you for a while."
                                            --Inferno


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~1999-11-30 23:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-11-08 14:08 mno-cygwin and gcc-2.95.2 Inferno
1999-11-08 22:31 ` Mumit Khan
1999-11-30 23:28   ` Mumit Khan
1999-11-08 23:13 ` Mumit Khan
1999-11-30 23:28   ` Mumit Khan
1999-11-30 23:28 ` Inferno

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