public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Compiler
@ 2000-02-23 13:38 Benjamin Clark
  2000-02-23 15:29 ` Compiler Martin v. Loewis
  2000-04-01  0:00 ` Compiler Benjamin Clark
  0 siblings, 2 replies; 6+ messages in thread
From: Benjamin Clark @ 2000-02-23 13:38 UTC (permalink / raw)
  To: gnu

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

Hello,
 
I am using one of your dos bassed compilers, gcc 
version 2.7.2 and using it to cross complie to a H8/300 processor, all obtained 
from Hitachi.
 
However I keep getting a persistant fault: 
-
 
unreferenced __floatsisf
unreferenced __addsf3
 
I have included the float header file from the 
include directory. Is the problem because the processor does not support 
floating point numbers or is there some sort of bug in my program or 
yours.
 
I would be gratefull for your help.
 
regards 
 
ben

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

* Re: Compiler
  2000-02-23 13:38 Compiler Benjamin Clark
@ 2000-02-23 15:29 ` Martin v. Loewis
  2000-04-01  0:00   ` Compiler Martin v. Loewis
  2000-04-01  0:00 ` Compiler Benjamin Clark
  1 sibling, 1 reply; 6+ messages in thread
From: Martin v. Loewis @ 2000-02-23 15:29 UTC (permalink / raw)
  To: Benjamin.Clark; +Cc: gnu, help-gcc

> I am using one of your dos bassed compilers, gcc version 2.7.2 and using
> it to cross complie to a H8/300 processor, all obtained from Hitachi.
> 
> However I keep getting a persistant fault: -
> 
> unreferenced __floatsisf
> unreferenced __addsf3

These symbols should be defined in libgcc.a, if they are defined at
all. If they are not, it appears to be a bug in the compiler or the
installation.

You may want to try to install gcc 2.95.2 yourself; I understand H8
support is part of the official gcc releases as well.

Regards,
Martin

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

* Compiler
  2000-02-23 13:38 Compiler Benjamin Clark
  2000-02-23 15:29 ` Compiler Martin v. Loewis
@ 2000-04-01  0:00 ` Benjamin Clark
  1 sibling, 0 replies; 6+ messages in thread
From: Benjamin Clark @ 2000-04-01  0:00 UTC (permalink / raw)
  To: gnu

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

Hello,
 
I am using one of your dos bassed compilers, gcc 
version 2.7.2 and using it to cross complie to a H8/300 processor, all obtained 
from Hitachi.
 
However I keep getting a persistant fault: 
-
 
unreferenced __floatsisf
unreferenced __addsf3
 
I have included the float header file from the 
include directory. Is the problem because the processor does not support 
floating point numbers or is there some sort of bug in my program or 
yours.
 
I would be gratefull for your help.
 
regards 
 
ben

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

* Re: Compiler
  2000-02-23 15:29 ` Compiler Martin v. Loewis
@ 2000-04-01  0:00   ` Martin v. Loewis
  0 siblings, 0 replies; 6+ messages in thread
From: Martin v. Loewis @ 2000-04-01  0:00 UTC (permalink / raw)
  To: Benjamin.Clark; +Cc: gnu, help-gcc

> I am using one of your dos bassed compilers, gcc version 2.7.2 and using
> it to cross complie to a H8/300 processor, all obtained from Hitachi.
> 
> However I keep getting a persistant fault: -
> 
> unreferenced __floatsisf
> unreferenced __addsf3

These symbols should be defined in libgcc.a, if they are defined at
all. If they are not, it appears to be a bug in the compiler or the
installation.

You may want to try to install gcc 2.95.2 yourself; I understand H8
support is part of the official gcc releases as well.

Regards,
Martin

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

* Compiler
@ 2004-08-18  6:42 Krisma-jean_jablonski
  0 siblings, 0 replies; 6+ messages in thread
From: Krisma-jean_jablonski @ 2004-08-18  6:42 UTC (permalink / raw)
  To: GCC

[-- Attachment #1: Type: text/plain, Size: 230 bytes --]

Hi, my Name is Jean and I need help to compiler a source to an executable
(rbatfile.exe) for DEC Alpha 21064 APX on windows NT 4.0 SP6.

________________________________________________
This mail was sent by Webmail Expresso 2.5


[-- Attachment #2: rbatfile.c --]
[-- Type: text/plain, Size: 357 bytes --]

#include <stdio.h>
#include <string.h>
main(argc,argv)
int argc;
char *argv[];
{
// launch a bat file for GPost spwnf
  char s1[280];
  int i;

// get arg

//printf(" argc=%d\n",argc);
  strcpy(s1,argv[1]);
  for (i=3;i<=argc;i++) {
    strcat(s1," ");
    strcat(s1,argv[i-1]);
  }
//printf(" s1=%s\n",s1);
// fire it
  system(s1);
}

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

* Compiler
@ 2004-08-18  6:42 Krisma-jean_jablonski
  0 siblings, 0 replies; 6+ messages in thread
From: Krisma-jean_jablonski @ 2004-08-18  6:42 UTC (permalink / raw)
  To: GCC

[-- Attachment #1: Type: text/plain, Size: 230 bytes --]

Hi, my Name is Jean and I need help to compiler a source to an executable
(rbatfile.exe) for DEC Alpha 21064 APX on windows NT 4.0 SP6.

________________________________________________
This mail was sent by Webmail Expresso 2.5


[-- Attachment #2: rbatfile.c --]
[-- Type: text/plain, Size: 357 bytes --]

#include <stdio.h>
#include <string.h>
main(argc,argv)
int argc;
char *argv[];
{
// launch a bat file for GPost spwnf
  char s1[280];
  int i;

// get arg

//printf(" argc=%d\n",argc);
  strcpy(s1,argv[1]);
  for (i=3;i<=argc;i++) {
    strcat(s1," ");
    strcat(s1,argv[i-1]);
  }
//printf(" s1=%s\n",s1);
// fire it
  system(s1);
}

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

end of thread, other threads:[~2004-08-17 17:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-02-23 13:38 Compiler Benjamin Clark
2000-02-23 15:29 ` Compiler Martin v. Loewis
2000-04-01  0:00   ` Compiler Martin v. Loewis
2000-04-01  0:00 ` Compiler Benjamin Clark
2004-08-18  6:42 Compiler Krisma-jean_jablonski
2004-08-18  6:42 Compiler Krisma-jean_jablonski

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