public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Question
@ 1998-09-20 21:17 Alex Buell
  1998-09-21  3:48 ` Question Philip Blundell
  1998-09-21  3:48 ` Question Jeffrey A Law
  0 siblings, 2 replies; 43+ messages in thread
From: Alex Buell @ 1998-09-20 21:17 UTC (permalink / raw)
  To: Linux Egcs

Why isn't there any diffs for glibc-2.0.9x? I've just heard 2.0.96 is out
now, does that means I have to download the whole thing just to move from
2.0.95 to 2.0.96? 

Cheers,
Alex
--
 /\_/\  Legalise cannabis now! 
( o.o ) Grow some cannabis today!
 > ^ <  Peace, Love, Unity and Respect to all.

http://www.tahallah.demon.co.uk - *new* - rewritten for text browser users!

Linux tahallah 2.1.122 #43 Sat Sep 19 10:54:36 EDT 1998 One AMD 486 DX/4 processor, 49.77 total bogomips, 32M RAM


^ permalink raw reply	[flat|nested] 43+ messages in thread
* Question
@ 2015-05-06 11:54 stanleyomachieful
  0 siblings, 0 replies; 43+ messages in thread
From: stanleyomachieful @ 2015-05-06 11:54 UTC (permalink / raw)
  To: gcc

Good day sir, how do I get tutorial of GNU make?thanks for you answer.
Sent from my BlackBerry wireless device from MTN

^ permalink raw reply	[flat|nested] 43+ messages in thread
* question
@ 2012-10-25  8:21 Виталий
  0 siblings, 0 replies; 43+ messages in thread
From: Виталий @ 2012-10-25  8:21 UTC (permalink / raw)
  To: gcc

You could not me to send some source code connected with compiling under linux
 -- 
Respectfully yours, Moskovtsev Vitaliy.
http://www.vncwin.ru

^ permalink raw reply	[flat|nested] 43+ messages in thread
* Question...
@ 2004-05-24 18:46 Valeriu Palos
  2004-05-24 18:55 ` Question Gerald Pfeifer
                   ` (2 more replies)
  0 siblings, 3 replies; 43+ messages in thread
From: Valeriu Palos @ 2004-05-24 18:46 UTC (permalink / raw)
  To: gcc

Hello, my name is Valeriu Palos and here is my problem.

For some time now I started preparing for the development of a software 
ideea of mine and I got everything through except for the part of the 
c/c++ compiler's licensing program.

I am rather determined to use GCC as the compiling platform for my 
program, but, the problem is that from what I have read (the GPL License 
documentation), I understood that if I build this software with GCC I 
would not be able to sell it and, even more, I would be compelled to 
disclose the source code of my software to the open public.

I am a true supporter of open source but I cannot agree that this 
concept should simply apply to all software programs on the planet.
The software in question involves a lot of hard work and true innovative 
research in an area which is not yet properly looked into by the 
developer community. So, you see?... what concerns me is not necessarily 
the money issue but the intelectual protection issue.

So, allthough I have tried, I simply cannot understand how revealing my 
work freely to the world could advantage me (except maybe from a PR 
point of view). I do not pretend to know better than anyone, which is 
why I am asking you... what is the solution?

I obviously do not want to switch from GCC to another compiler since I 
would be deprived of many advantages (for me the most important beeing 
*the compatibility/portability*).
If the only solution to using GCC is giving my code up for free, than I 
ask you to help me understand the advantages of this choice (make me 
belive!... I know there has to be some solid grounds for GCC's success 
and the success of programs made with it).

If it is possible, I am willing to buy another type of license program 
that permits me to make my software commercial, allthough I am fairly 
sure that this is not the case.

If I have to switch to another compiling platform it would obviously 
mean that I should buy a Windows-like platform (Borland or Microsoft) 
since these are next in line as far as performance, quality and overall 
advantages go.

I do not mean to insult the ideea of free software through GPL by asking 
this, but it is really important. Also, I would expect that, through 
time, many might have asked the same thing I am, so if you decide that 
my letter is not even worth replying I will not hold it against you.

Thank you, and keep up the (undoubtedly) good work! :)


^ permalink raw reply	[flat|nested] 43+ messages in thread
* Question
@ 2003-03-07 15:26 MKAOUAR Mohamed
  0 siblings, 0 replies; 43+ messages in thread
From: MKAOUAR Mohamed @ 2003-03-07 15:26 UTC (permalink / raw)
  To: gcc

Dear Sir,

Can you help me to understand what's the difference between a simple 
program and a preprocessor?

Sincerely,
Mohamed MKAOUAR.

^ permalink raw reply	[flat|nested] 43+ messages in thread
* question
@ 2001-08-21 15:56 Eugenio Flores
  0 siblings, 0 replies; 43+ messages in thread
From: Eugenio Flores @ 2001-08-21 15:56 UTC (permalink / raw)
  To: gcc; +Cc: gnu

Hi, from Managua, Nicaragua,

I work with a SunOs release 5.7 and I was installing de gcc 3.0, the first 
thing I did after
downloding the sources files was to use the gzip to make the proper 
directories, and then
I followed the instructions that I read in the the installation page, after 
making the objdir I wrote
the next step(srcdir/configure [options] [target]) in my case I wrote the 
name o ther source directory but I get as answer from the system: 
/opt/NSCPcom/gcc/configure:  not found.

Is configure a command that the OS has to have? what can I do?

Thanks a lot for any feedback.

Eugenio Flores


_________________________________________________________________
Descargue GRATUITAMENTE MSN Explorer en http://explorer.msn.es/intl.asp

^ permalink raw reply	[flat|nested] 43+ messages in thread
* Question
@ 2001-07-09 17:02 Tervel  Atanassov (Anaheim)
  2001-07-09 20:25 ` Question Joe Buck
  0 siblings, 1 reply; 43+ messages in thread
From: Tervel  Atanassov (Anaheim) @ 2001-07-09 17:02 UTC (permalink / raw)
  To: 'gcc@gcc.gnu.org'

Hello,

I am trying to port some more code from windows 2000 to linux.  The specific
functionality I would like to port is called "Structured Exception Handling"
and it works like so:

1.	Define a function which based upons a signal throws an exceptoion.
For example:
	void translateException(unsigned int u, EXCEPTION_POINTERS* pExp)
	{
		switch (u)
		{
		case (unsigned int)0xc0000005:
			throw AccessViolationException(
"SE_Exception::translateException() - u == 0xc0000005",
	
pExp,
	
u );
		break;
		default:
			throw SE_Exception(
"SE_Exception::translateException() - default:",
								pExp,
								u );
		}
	}
	The idea here is that the function translates the windows "signal"
to a user defined exception object.

2.	call the Windows API function
_set_se_translator(translateException).
3.	when a OS trap -- like an access violation -- occurs the specified
function will be called.
4.	From within the body of that function a user defined exception
object (MyAccessViolationException) can be thrown  which can be caught
anywhere in the offending stack frame. e.g.
	try
	{
		int* pNull = 0;
		*pNull = 12;
	}
	catch (MyAccessViolationException& e)
	{
		printf ("success.\n");
	}

I found a related article at http://gcc.gnu.org/java/port-signals.html which
explains how to raise Java exceptions in response to SIGSEGV and such.
Using that I came up with the following example:

void on_accvio(int signo/*, siginfo_t *info, void *ignored*/)
{
	void **_p = (void **)&signo;
	struct sigcontext_struct *_regs = (struct sigcontext_struct *)++_p;
	register unsigned long _ebp = _regs->ebp;
	register unsigned long _eip = _regs->eip;
	asm volatile ("mov %0, (%%ebp); mov %1, 4(%%ebp)" : : "r"(_ebp),
"r"(_eip));
//	register unsigned long _esp = _regs->esp;
//	asm volatile ("mov %0, (%%ebp); mov %1, 4(%%ebp); mov %1, 4(%%esp)"
: : "r"(_ebp), "r"(_eip), "r"(_esp));
	//I am only throwing the true for now
	throw true;
}

struct sigaction sa;
void init()
{
	sigemptyset(&sa.sa_mask);
	sa.sa_handler = on_accvio;
	sa.sa_flags = 0;
	if (sigaction(SIGSEGV, &sa, NULL))
	{
		printf("initlog() : sigaction() failed.\n");
		exit(1);
	}
	return;
}


int main(int argc, char ** argv)
{
	init();
	//start a bunch of threads.  which contain the follwoing code.
	try 
	{
		printf ("[%d]\tEventWaiterThread(%lu)::Run() : Generating an
exception.\n",GetCurrentThreadId(), this);
		int* pNull = 0;
		*pNull = 9;
	}
	catch (bool b)
	{
		printf ("[%d]\tEventWaiterThread(%lu)::Run() : Caught an
exception.\n",GetCurrentThreadId(), this);
	}

...
}

The code works -- sorta.  The exception gets handled fine, however as soon
as the catch occurs, the argument list of the offending method is seriously
messed up.  As you can see from the commented out code, i tried overwritting
the stack register (I guessed it's called %%esp) in the hope of fixing this.
It didn't work.  What should i do?

Any help would be greatly appreciated, as assembly and I are on VERY formal
terms.

Thanks,

Tervel Atanassov

^ permalink raw reply	[flat|nested] 43+ messages in thread
* question
@ 2001-05-09  5:49 Majid moghaddam
  2001-05-09  6:38 ` question Erik Mouw
                   ` (2 more replies)
  0 siblings, 3 replies; 43+ messages in thread
From: Majid moghaddam @ 2001-05-09  5:49 UTC (permalink / raw)
  To: gcc

 Dear Sir
Hello
I would appreciate if you help me solve a problem in
installing gcc-2.7.2.3 . 
I am trying to install it on a SGI R5000 ( IRIX 6.3 )
 as C compiler and after its installation I will start
to install f77 using gcc-g77.
The file sarray.c can not be built after entering
command " make " ( I have already installed gnu make
). The warnings are:

sarray.c : In function 'sarray_at_put':
sarray.c : 126 :warning : type mismatch in implicit
declaration for built-in function 'memcpy'
sarray.c :In function 'sarray_realloc':
sarray.c :241 : warning:comparison is always 0 due to
limited range of data type
*** Error code 1 (bu21)
*** Error code 1 (bu21)  

I have already downloaded gcc-2.7.2.3 and some g77 (
including g77-0.5.20) . I have had many problems with
them . unfortunately I am not an expert; I am a
student who needs to f77 severely. I would appreciate
if you suggest me the simplest way to have f77 and the
best versions of gcc and g77.
I am sorry bothering you and thank you very much for
your kind helps. 
Best regards,
Majid Erfani Moghaddam 

__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/

^ permalink raw reply	[flat|nested] 43+ messages in thread
* question
@ 2000-12-27 23:08 chikara
  2000-12-28  0:43 ` question Gerald Pfeifer
  0 siblings, 1 reply; 43+ messages in thread
From: chikara @ 2000-12-27 23:08 UTC (permalink / raw)
  To: gcc

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 91 bytes --]

How^[$B!!^[(Bdo I get a complete version of binary 
 I missed 4times to get binary 
file.

^ permalink raw reply	[flat|nested] 43+ messages in thread
* Question
@ 2000-11-13  2:54 Marzuq Madi
  2000-11-13  3:10 ` Question Gerald Pfeifer
  0 siblings, 1 reply; 43+ messages in thread
From: Marzuq Madi @ 2000-11-13  2:54 UTC (permalink / raw)
  To: 'gcc@gcc.gnu.org'

Hello,

My name is Madi Marzuq, I would like to ask is it a good practice to
configure, build and install the GCC in one machine, and then tar the whole
pkg and extract it leter on in another machine with the same OS version and
patch bundle. like that I don't need to configure, compile it in each
machine.

I would be very gratefull if you provide me with an answer to this question.

Regards,

Madi 

^ permalink raw reply	[flat|nested] 43+ messages in thread
* Question
@ 2000-10-05  7:54 Sampson, Michael J.
  2000-10-05  8:27 ` Question Bo Thorsen
  2000-10-05  9:43 ` Question Lassi A. Tuura
  0 siblings, 2 replies; 43+ messages in thread
From: Sampson, Michael J. @ 2000-10-05  7:54 UTC (permalink / raw)
  To: 'gcc@gcc.gnu.org'

Hello,
  	Currently I am working on a project that consists of Fortran, C, C++
and a front end which is written in C++. I am having trouble with linking
all of my object files I have built. I've spent some time reading through
the GNU GCC and G77 manuals on your web site. Right now I seemed to be stuck
where I'm trying to do the final linking stage with gcc. No matter how I
arrange the linking part I am getting undefined symbol references. If I try
to do the linking with g++, I get Fortran undefined reference symbols, if I
try to the linking with g77, I get C++ undefined references (iostream).
Could the GNU GCC group perhaps guide in a direction to resolve this issue?


Mike

^ permalink raw reply	[flat|nested] 43+ messages in thread
* Re: Question
@ 2000-05-31 11:03 Mike Stump
  0 siblings, 0 replies; 43+ messages in thread
From: Mike Stump @ 2000-05-31 11:03 UTC (permalink / raw)
  To: Ezequiel.Munoz, gcc

Yes.

^ permalink raw reply	[flat|nested] 43+ messages in thread
* Question
@ 2000-05-31  8:41 Ezequiel Munoz
  2000-05-31 10:33 ` Question Martin v. Loewis
  0 siblings, 1 reply; 43+ messages in thread
From: Ezequiel Munoz @ 2000-05-31  8:41 UTC (permalink / raw)
  To: 'gcc@gcc.gnu.org'

Dears,

I would like to know if I can use this GCC compiler to make programs in c
and c++ under Windows98 and Windows NT.

Thanks in advance,

Ezequiel.

^ permalink raw reply	[flat|nested] 43+ messages in thread
* question
@ 2000-02-24 15:21 Mark.Edwards
  0 siblings, 0 replies; 43+ messages in thread
From: Mark.Edwards @ 2000-02-24 15:21 UTC (permalink / raw)
  To: gcc

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 600 bytes --]

Title: question





hello - i unziped:


gcc-2_95_2-sd-11_00_depot


and the readme.hpux looks like it is more for installing than actually running....


(at least this newbie TRIED to read the instructions)


now, is there a README or any instructions that pertain to using the pre-build executable
version??


i tried (and failed):


> gcc  helloworld.c
as: "/var/tmp/ccIJzYda.s", line 22: error 1052: Directive name not recognized - NSUBSPA


> cat  helloworld.c
int main()
{
    printf ("Hello world!..\n");
    return (0);
}


any thoughs??  thx,  mark edwards




^ permalink raw reply	[flat|nested] 43+ messages in thread
* Re: QUESTION
@ 2000-02-18  5:47 N8TM
  0 siblings, 0 replies; 43+ messages in thread
From: N8TM @ 2000-02-18  5:47 UTC (permalink / raw)
  To: Leon.Jacobs, gcc

In a message dated 2/18/2000 2:48:56 AM Pacific Standard Time, 
Leon.Jacobs@hoogovens.com writes:

> In one of my Fortran-codes I want to call an executable written in another
>  programming language (DELPHI). Is this possible within Fortran, and if so,
>  are these commands compilable by the GNU-compiler?
I am not certain of the answer, but this appears to be a question related to 
MS Windows programming and .dll's, and there is a great deal of material on 
this subject at http://www.xraylith.wisc.edu/~khan .

Tim
tprince@computer.org

^ permalink raw reply	[flat|nested] 43+ messages in thread
* QUESTION
@ 2000-02-18  2:47 Jacobs, L
  0 siblings, 0 replies; 43+ messages in thread
From: Jacobs, L @ 2000-02-18  2:47 UTC (permalink / raw)
  To: 'gcc@gcc.gnu.org'

Dear reader,

I started programming in Fortran a few weeks ago. For compiling programs I
make use of the GNU-compiler. I found this email-address on your web-site.
In one of my Fortran-codes I want to call an executable written in another
programming language (DELPHI). Is this possible within Fortran, and if so,
are these commands compilable by the GNU-compiler?

I would be very gratefull if you could help me with this problem. I look
forward to receiving your reply.

Yours sincerely,

Leon Jacobs

Corus Research Development & Technology
P.O. Box 10.000
1970 CA IJmuiden (The Netherlands)
tel. +31 (0)251-495103 / fax +31 (0)251-470235


^ permalink raw reply	[flat|nested] 43+ messages in thread
* Question...
@ 1999-10-19  0:02 k154067
  1999-10-19  0:24 ` Question Jeffrey A Law
  1999-10-31 23:35 ` Question k154067
  0 siblings, 2 replies; 43+ messages in thread
From: k154067 @ 1999-10-19  0:02 UTC (permalink / raw)
  To: gcc

Hi,

  I am writing code to HItachi h8/3003-controller and I have compile this
code with gcc. But now I have problem with floating point math it seems to
go wrong... I understod that problem is compiler which is gcc 2.7.-96q3a.
So now I have tried to find newer compiler into internet but all I have
found is to be to unix and I have dos... So where I could find compiler to
dos and cross-compiler to h8/3003???

Yours 
Tappi
k154067@cc.tut.fi

^ permalink raw reply	[flat|nested] 43+ messages in thread
* Question
@ 1998-04-21  6:52 SXTHREE
  1998-04-21 17:38 ` Question Per Bothner
  0 siblings, 1 reply; 43+ messages in thread
From: SXTHREE @ 1998-04-21  6:52 UTC (permalink / raw)
  To: egcs

Why is _IO_va_list defined as a char * (in streambuf.h)
and not as a __gnuc_va_list like other va_lists ??

It produces an error while compiling isscan.cc 'cause
a va_list (defined as a __gnuc_va_list i.e. void * on
my OS) is passed where a _IO_va_list (defined as a char *)
is expected.

FM

^ permalink raw reply	[flat|nested] 43+ messages in thread
* Re: question
@ 1998-04-05 13:18 Daniel Egger
  1998-04-06  9:34 ` question Joe Buck
  0 siblings, 1 reply; 43+ messages in thread
From: Daniel Egger @ 1998-04-05 13:18 UTC (permalink / raw)
  To: egcs

On Sat, 04 Apr 1998, you wrote:

> > what does "egcs" stand for? Its not in the FAQ.

>It just sounded good.

 It thought it stands for something like 
 "Enhanced Gnu Compiler System"

--

Servus,
       Daniel

^ permalink raw reply	[flat|nested] 43+ messages in thread
* question
@ 1998-04-04 11:01 Richard Wong
  1998-04-04 14:20 ` question Gavin Koch
  1998-04-04 16:52 ` question Jeffrey A Law
  0 siblings, 2 replies; 43+ messages in thread
From: Richard Wong @ 1998-04-04 11:01 UTC (permalink / raw)
  To: egcs

what does "egcs" stand for? Its not in the FAQ.

richard wong
Princeton, Math

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

end of thread, other threads:[~2015-05-06 11:54 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-09-20 21:17 Question Alex Buell
1998-09-21  3:48 ` Question Philip Blundell
1998-09-21  3:48 ` Question Jeffrey A Law
1998-09-21  3:54   ` Question Alex Buell
  -- strict thread matches above, loose matches on Subject: below --
2015-05-06 11:54 Question stanleyomachieful
2012-10-25  8:21 question Виталий
2004-05-24 18:46 Question Valeriu Palos
2004-05-24 18:55 ` Question Gerald Pfeifer
2004-05-24 18:58 ` Question Zack Weinberg
2004-05-25  0:32   ` Question Robert Dewar
2004-05-25  0:53 ` Question Robert Dewar
2003-03-07 15:26 Question MKAOUAR Mohamed
2001-08-21 15:56 question Eugenio Flores
2001-07-09 17:02 Question Tervel  Atanassov (Anaheim)
2001-07-09 20:25 ` Question Joe Buck
2001-05-09  5:49 question Majid moghaddam
2001-05-09  6:38 ` question Erik Mouw
2001-05-09  6:42 ` question Tim Prince
2001-05-09  6:58 ` question Paolo Carlini
2000-12-27 23:08 question chikara
2000-12-28  0:43 ` question Gerald Pfeifer
2000-11-13  2:54 Question Marzuq Madi
2000-11-13  3:10 ` Question Gerald Pfeifer
2000-10-05  7:54 Question Sampson, Michael J.
2000-10-05  8:27 ` Question Bo Thorsen
2000-10-05  9:43 ` Question Lassi A. Tuura
2000-05-31 11:03 Question Mike Stump
2000-05-31  8:41 Question Ezequiel Munoz
2000-05-31 10:33 ` Question Martin v. Loewis
2000-02-24 15:21 question Mark.Edwards
2000-02-18  5:47 QUESTION N8TM
2000-02-18  2:47 QUESTION Jacobs, L
1999-10-19  0:02 Question k154067
1999-10-19  0:24 ` Question Jeffrey A Law
1999-10-31 23:35   ` Question Jeffrey A Law
1999-10-31 23:35 ` Question k154067
1998-04-21  6:52 Question SXTHREE
1998-04-21 17:38 ` Question Per Bothner
1998-04-05 13:18 question Daniel Egger
1998-04-06  9:34 ` question Joe Buck
1998-04-04 11:01 question Richard Wong
1998-04-04 14:20 ` question Gavin Koch
1998-04-04 16:52 ` question Jeffrey A Law

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