public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* re: Newbie question
@ 2007-05-25 19:32 Takatsugu Kobayashi
  2007-05-25 21:12 ` Artūras Moskvinas
  2007-05-26  8:54 ` Matthew Woehlke
  0 siblings, 2 replies; 11+ messages in thread
From: Takatsugu Kobayashi @ 2007-05-25 19:32 UTC (permalink / raw)
  To: gcc-help

Hi,

I migrated from windows to Fedora6 linux a few months ago, and am still 
learning to make the best out of this fantastic OS....

I just installed GSL for my statistical research, but I installed it on 
a different folder than the one I wa supposed to. I should have 
installed /usr/include directory rather than /usr/local/include. So I 
should specify the path to this usr/local/inlcude/gsl everytime I run 
C/C++.

This is very simple newbie question, but how to specify the path in the 
process of ./configure, make, make install etc? I could just copy and 
paste all the files in the gsl directory in /usr/local/include to 
/usr/include by the chmod command....

I appreciate your help.

Thanks

Taka

^ permalink raw reply	[flat|nested] 11+ messages in thread
* newbie question
@ 2007-07-06 20:10 Leonardo Santagostini
  0 siblings, 0 replies; 11+ messages in thread
From: Leonardo Santagostini @ 2007-07-06 20:10 UTC (permalink / raw)
  To: gcc-help

Hi all,
Im having a problem running a made in home application that uses postgresql
As im a newbie im asking for some guidelines.

Anybody can help me ?

Thanks
Leonardo

PS: This is the fault

RGPVISAServer[9104]: segfault at 0000000000000028 rip 000000329e23464e
rsp 0000000045000d40 error 4
RGPVISAServer[28775]: segfault at 0000000000000108 rip
000000329e244591 rsp 00000000450011a0 error 4
RGPVISAServer[15006]: segfault at 00000000000000c8 rip
000000329e244591 rsp 00000000431fe1a0 error 4
RGPVISAServer[3419]: segfault at 000000329b320085 rip 000000329e236634
rsp 0000000043bff1b8 error 4
RGPVISAServer[24107]: segfault at 0000000000000028 rip
000000329e256fae rsp 00000000431fe190 error 4

^ permalink raw reply	[flat|nested] 11+ messages in thread
[parent not found: <616BE6A276E3714788D2AC35C40CD18D3F27FE@whale.softwire.co.uk>]
* newbie question
@ 2002-02-07 16:47 M.A-R. Abdullah
  0 siblings, 0 replies; 11+ messages in thread
From: M.A-R. Abdullah @ 2002-02-07 16:47 UTC (permalink / raw)
  To: gcc-help

Hi
I'mhaving problems trying to use getch(). In short, what is the simplest
way to use this. I have the following code but the problem is that the
screen is cleared when getch() is called. How can this be resolved?
(I am typing the program in, please excuse spelling errors, the original
does compile)


#include <stdio.h>
#include<curses.h>

int main(void)
{
  int i;
  WINDOW *win=NULL;

  win=initscr();

  cbreak();
  i=nodelay(win, 0);

  printf("This statement doesn't seem to get printed");

  i=getch();
  printf("This char is %c\n\r", i);
  printf("This statement is printed");

  endwin();
  return 0;
}

Thanks

MA

^ permalink raw reply	[flat|nested] 11+ messages in thread
* RE: newbie question
@ 2001-03-14 10:16 David Korn
  0 siblings, 0 replies; 11+ messages in thread
From: David Korn @ 2001-03-14 10:16 UTC (permalink / raw)
  To: 'Stagner, Robert', 'gcc-help@gcc.gnu.org'

>-----Original Message-----
>From: Stagner, Robert [ mailto:Robert.Stagner@HomeStore.com ]
>Sent: 14 March 2001 17:15

>how does one apply the patch to gcc ?  i've downloaded both the source for
>gcc and the patch file from the gcc web-site, but the patch file is simply
>a text file with references to code.

  Using the 'patch' command!!

  Change directory into the directory where you unpacked the gcc source
code.  This should be the directory where gcc-2.95.2 is a subdirectory, 
you don't want to actually be *in* that directory.  Make sure you have
a copy of the patchfile in that directory and type

patch -p0 < glibc-2.2.patch

(For further info about the patch command, try 'patch --help' or 'man 
patch' or 'info patch')

     hth,
      DaveK
-- 
 All your base are belong to us!


**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**********************************************************************

^ permalink raw reply	[flat|nested] 11+ messages in thread
* newbie question
@ 2001-03-14  9:16 Stagner, Robert
  0 siblings, 0 replies; 11+ messages in thread
From: Stagner, Robert @ 2001-03-14  9:16 UTC (permalink / raw)
  To: 'gcc-help@gcc.gnu.org'

Hello,

i'm running RedHat 7.0 and would like to install gcc 2.95.2.  however, since
i have never installed gcc from source before, and as mr. alexandre oliva
mentioned on this forum not so long ago (Jan 18, 2001): 

begin included e-mail:
--------------------------------

On Jan 18, 2001, "Roland Schwarz" <roland.schwarz@chello.at> wrote:

> After struggeling araound for a while, I learned that the newest glibc 2.2
> cannot be used with gcc 2.95.2 due
> to an incompatibility in indsteam, filepos, streampos.

There are patches in the GCC platform-specific installation notes that
correct this compatibility issue.

-- 
Alexandre Oliva

--------------------------------
end included e-mail


how does one apply the patch to gcc ?  i've downloaded both the source for
gcc and the patch file from the gcc web-site, but the patch file is simply a
text file with references to code.

any assistance would be appreciated.



^ permalink raw reply	[flat|nested] 11+ messages in thread
* newbie question
@ 2001-01-10 23:22 Craig Cowen
  2001-01-10 23:24 ` Lawrence W. Leung
  2001-01-10 23:32 ` Puneet Singhal
  0 siblings, 2 replies; 11+ messages in thread
From: Craig Cowen @ 2001-01-10 23:22 UTC (permalink / raw)
  To: help-gcc

I am going over a beginners book on ANSI C and it references a header
file conio.h and a function getche().
The function is suppose to get one character and force a return.
How can I use this with gcc or how can I get the same functionality.

uname -a
FreeBSD athlon 4.1.1-RELEASE FreeBSD 4.1.1-RELEASE #14: Fri Nov 24
19:36:27 GMT

cc -v
sing builtin specs.
gcc version 2.95.2 19991024 (release)

Thanks

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

end of thread, other threads:[~2007-07-06 20:10 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-25 19:32 Newbie question Takatsugu Kobayashi
2007-05-25 21:12 ` Artūras Moskvinas
2007-05-26  8:54 ` Matthew Woehlke
  -- strict thread matches above, loose matches on Subject: below --
2007-07-06 20:10 newbie question Leonardo Santagostini
     [not found] <616BE6A276E3714788D2AC35C40CD18D3F27FE@whale.softwire.co.uk>
2002-02-08  1:14 ` Rupert Wood
2002-02-07 16:47 M.A-R. Abdullah
2001-03-14 10:16 David Korn
2001-03-14  9:16 Stagner, Robert
2001-01-10 23:22 Craig Cowen
2001-01-10 23:24 ` Lawrence W. Leung
2001-01-10 23:32 ` Puneet Singhal

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