public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Can you offer help?
@ 1999-10-25 21:53 Stephen Wojciechowski
  1999-10-26  2:31 ` Martin v. Loewis
  1999-10-31 23:35 ` Stephen Wojciechowski
  0 siblings, 2 replies; 10+ messages in thread
From: Stephen Wojciechowski @ 1999-10-25 21:53 UTC (permalink / raw)
  To: gcc

Hello
 
I have a question..
 
Is it possible to compile a multi-thread application
using EGCS 1.1.1 on a SparcStation10 with Solaris
2.5.1.
 
If so are there any variables that I need to set as I
configure?
 
Please help me if you can stephenw13@yahoo.com

Thank You for your time
 
Stephen John Wojciechowski Jr.


__________________________________________________
Do You Yahoo!?
Bid and sell for free at http://auctions.yahoo.com

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

* Re: Can you offer help?
  1999-10-25 21:53 Can you offer help? Stephen Wojciechowski
@ 1999-10-26  2:31 ` Martin v. Loewis
  1999-10-26  2:58   ` Konstantin Baumann
  1999-10-31 23:35   ` Martin v. Loewis
  1999-10-31 23:35 ` Stephen Wojciechowski
  1 sibling, 2 replies; 10+ messages in thread
From: Martin v. Loewis @ 1999-10-26  2:31 UTC (permalink / raw)
  To: stephenw13; +Cc: gcc

> Is it possible to compile a multi-thread application
> using EGCS 1.1.1 on a SparcStation10 with Solaris
> 2.5.1.

Certainly.

> If so are there any variables that I need to set as I
> configure?

--enable-threads would be a good choice. This is relevant only for C++
and ObjC applications, though.

When compiling programs, don't forget to pass -pthreads (or -threads,
if you want to use Solaris threads).

Hope this helps,
Martin

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

* Re: Can you offer help?
  1999-10-26  2:31 ` Martin v. Loewis
@ 1999-10-26  2:58   ` Konstantin Baumann
  1999-10-26 10:47     ` Alexandre Oliva
  1999-10-31 23:35     ` Konstantin Baumann
  1999-10-31 23:35   ` Martin v. Loewis
  1 sibling, 2 replies; 10+ messages in thread
From: Konstantin Baumann @ 1999-10-26  2:58 UTC (permalink / raw)
  To: Martin v. Loewis; +Cc: stephenw13, gcc

"Martin v. Loewis" wrote:
> 
> > Is it possible to compile a multi-thread application
> > using EGCS 1.1.1 on a SparcStation10 with Solaris
> > 2.5.1.
> 
> Certainly.
> 
> > If so are there any variables that I need to set as I
> > configure?
> 
> --enable-threads would be a good choice. This is relevant only for C++
> and ObjC applications, though.

I thing, this is only relevant for ObjC, not C++!?!

-- 
Dipl.-Math. Konstantin Baumann                   Phone: +49-251-83-32701
Institute for Computer Science                     Fax: +49-251-83-33755
University of Muenster
Einsteinstrasse 62                    mailto:kostab@math.uni-muenster.de
D-48149 Muenster              http://wwwmath.uni-muenster.de/cs/u/kostab

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

* Re: Can you offer help?
  1999-10-26  2:58   ` Konstantin Baumann
@ 1999-10-26 10:47     ` Alexandre Oliva
  1999-10-27  6:58       ` Wolfram Gloger
  1999-10-31 23:35       ` Alexandre Oliva
  1999-10-31 23:35     ` Konstantin Baumann
  1 sibling, 2 replies; 10+ messages in thread
From: Alexandre Oliva @ 1999-10-26 10:47 UTC (permalink / raw)
  To: Konstantin Baumann; +Cc: Martin v. Loewis, stephenw13, gcc

On Oct 26, 1999, Konstantin Baumann <kostab@math.uni-muenster.de> wrote:

>> --enable-threads would be a good choice. This is relevant only for C++
>> and ObjC applications, though.

> I thing, this is only relevant for ObjC, not C++!?!

Nope, it also enables the thread-safe exception handling code.

-- 
Alexandre Oliva http://www.ic.unicamp.br/~oliva IC-Unicamp, Bra[sz]il
oliva@{lsd.ic.unicamp.br,guarana.{org,com}} aoliva@{acm,computer}.org
oliva@{gnu.org,kaffe.org,{egcs,sourceware}.cygnus.com,samba.org}
** I may forward mail about projects to mailing lists; please use them

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

* Re: Can you offer help?
  1999-10-26 10:47     ` Alexandre Oliva
@ 1999-10-27  6:58       ` Wolfram Gloger
  1999-10-31 23:35         ` Wolfram Gloger
  1999-10-31 23:35       ` Alexandre Oliva
  1 sibling, 1 reply; 10+ messages in thread
From: Wolfram Gloger @ 1999-10-27  6:58 UTC (permalink / raw)
  To: oliva; +Cc: gcc

> On Oct 26, 1999, Konstantin Baumann <kostab@math.uni-muenster.de> wrote:
> 
> >> --enable-threads would be a good choice. This is relevant only for C++
> >> and ObjC applications, though.
> 
> > I thing, this is only relevant for ObjC, not C++!?!
> 
> Nope, it also enables the thread-safe exception handling code.

If this is really the case, please consider the following patch.

--- install/CONFIGURE~	Thu Jul 29 14:46:30 1999
+++ install/CONFIGURE	Wed Oct 27 15:56:50 1999
@@ -70,7 +70,8 @@
        be built to support different target variants, calling
        conventions, etc. This is the default.
      * --enable-threads -- Specify that the target supports threads. This
-       affects only the Objective-C compiler and runtime library.
+       affects only the Objective-C compiler and runtime library, and
+       exception handling for C++.
      * --enable-threads=_lib_ -- Specify that _lib_ is the thread support
        library. This affects only the Objective-C compiler and runtime
        library.

Regards,
Wolfram.

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

* Re: Can you offer help?
  1999-10-26  2:31 ` Martin v. Loewis
  1999-10-26  2:58   ` Konstantin Baumann
@ 1999-10-31 23:35   ` Martin v. Loewis
  1 sibling, 0 replies; 10+ messages in thread
From: Martin v. Loewis @ 1999-10-31 23:35 UTC (permalink / raw)
  To: stephenw13; +Cc: gcc

> Is it possible to compile a multi-thread application
> using EGCS 1.1.1 on a SparcStation10 with Solaris
> 2.5.1.

Certainly.

> If so are there any variables that I need to set as I
> configure?

--enable-threads would be a good choice. This is relevant only for C++
and ObjC applications, though.

When compiling programs, don't forget to pass -pthreads (or -threads,
if you want to use Solaris threads).

Hope this helps,
Martin

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

* Re: Can you offer help?
  1999-10-26  2:58   ` Konstantin Baumann
  1999-10-26 10:47     ` Alexandre Oliva
@ 1999-10-31 23:35     ` Konstantin Baumann
  1 sibling, 0 replies; 10+ messages in thread
From: Konstantin Baumann @ 1999-10-31 23:35 UTC (permalink / raw)
  To: Martin v. Loewis; +Cc: stephenw13, gcc

"Martin v. Loewis" wrote:
> 
> > Is it possible to compile a multi-thread application
> > using EGCS 1.1.1 on a SparcStation10 with Solaris
> > 2.5.1.
> 
> Certainly.
> 
> > If so are there any variables that I need to set as I
> > configure?
> 
> --enable-threads would be a good choice. This is relevant only for C++
> and ObjC applications, though.

I thing, this is only relevant for ObjC, not C++!?!

-- 
Dipl.-Math. Konstantin Baumann                   Phone: +49-251-83-32701
Institute for Computer Science                     Fax: +49-251-83-33755
University of Muenster
Einsteinstrasse 62                    mailto:kostab@math.uni-muenster.de
D-48149 Muenster              http://wwwmath.uni-muenster.de/cs/u/kostab

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

* Re: Can you offer help?
  1999-10-27  6:58       ` Wolfram Gloger
@ 1999-10-31 23:35         ` Wolfram Gloger
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfram Gloger @ 1999-10-31 23:35 UTC (permalink / raw)
  To: oliva; +Cc: gcc

> On Oct 26, 1999, Konstantin Baumann <kostab@math.uni-muenster.de> wrote:
> 
> >> --enable-threads would be a good choice. This is relevant only for C++
> >> and ObjC applications, though.
> 
> > I thing, this is only relevant for ObjC, not C++!?!
> 
> Nope, it also enables the thread-safe exception handling code.

If this is really the case, please consider the following patch.

--- install/CONFIGURE~	Thu Jul 29 14:46:30 1999
+++ install/CONFIGURE	Wed Oct 27 15:56:50 1999
@@ -70,7 +70,8 @@
        be built to support different target variants, calling
        conventions, etc. This is the default.
      * --enable-threads -- Specify that the target supports threads. This
-       affects only the Objective-C compiler and runtime library.
+       affects only the Objective-C compiler and runtime library, and
+       exception handling for C++.
      * --enable-threads=_lib_ -- Specify that _lib_ is the thread support
        library. This affects only the Objective-C compiler and runtime
        library.

Regards,
Wolfram.

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

* Re: Can you offer help?
  1999-10-26 10:47     ` Alexandre Oliva
  1999-10-27  6:58       ` Wolfram Gloger
@ 1999-10-31 23:35       ` Alexandre Oliva
  1 sibling, 0 replies; 10+ messages in thread
From: Alexandre Oliva @ 1999-10-31 23:35 UTC (permalink / raw)
  To: Konstantin Baumann; +Cc: Martin v. Loewis, stephenw13, gcc

On Oct 26, 1999, Konstantin Baumann <kostab@math.uni-muenster.de> wrote:

>> --enable-threads would be a good choice. This is relevant only for C++
>> and ObjC applications, though.

> I thing, this is only relevant for ObjC, not C++!?!

Nope, it also enables the thread-safe exception handling code.

-- 
Alexandre Oliva http://www.ic.unicamp.br/~oliva IC-Unicamp, Bra[sz]il
oliva@{lsd.ic.unicamp.br,guarana.{org,com}} aoliva@{acm,computer}.org
oliva@{gnu.org,kaffe.org,{egcs,sourceware}.cygnus.com,samba.org}
** I may forward mail about projects to mailing lists; please use them

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

* Can you offer help?
  1999-10-25 21:53 Can you offer help? Stephen Wojciechowski
  1999-10-26  2:31 ` Martin v. Loewis
@ 1999-10-31 23:35 ` Stephen Wojciechowski
  1 sibling, 0 replies; 10+ messages in thread
From: Stephen Wojciechowski @ 1999-10-31 23:35 UTC (permalink / raw)
  To: gcc

Hello
 
I have a question..
 
Is it possible to compile a multi-thread application
using EGCS 1.1.1 on a SparcStation10 with Solaris
2.5.1.
 
If so are there any variables that I need to set as I
configure?
 
Please help me if you can stephenw13@yahoo.com

Thank You for your time
 
Stephen John Wojciechowski Jr.


__________________________________________________
Do You Yahoo!?
Bid and sell for free at http://auctions.yahoo.com

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

end of thread, other threads:[~1999-10-31 23:35 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-10-25 21:53 Can you offer help? Stephen Wojciechowski
1999-10-26  2:31 ` Martin v. Loewis
1999-10-26  2:58   ` Konstantin Baumann
1999-10-26 10:47     ` Alexandre Oliva
1999-10-27  6:58       ` Wolfram Gloger
1999-10-31 23:35         ` Wolfram Gloger
1999-10-31 23:35       ` Alexandre Oliva
1999-10-31 23:35     ` Konstantin Baumann
1999-10-31 23:35   ` Martin v. Loewis
1999-10-31 23:35 ` Stephen Wojciechowski

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