- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I HAVE A PROBLEM TO COMPILER THE FILE configure.user:
RUNTIME_SYSTEM = "linux"
FC = ifort
CC = icc
#FCFLAGS = -I$(LIBINCLUDE) -axSSE4.1 -pc 32 -O3 -convert big_endian -openmp -DDEC_ALPHA -override-limits
FCFLAGS = -I$(LIBINCLUDE) -O3 -convert big_endian -openmp -DDEC_ALPHA -override-limits
CPP = /lib/cpp
CFLAGS = -O -DDEC_ALPHA -DSGI_IA64
CPPFLAGS = -I$(LIBINCLUDE) -DDEC_ALPHA
LDOPTIONS = $(FCFLAGS)
LOCAL_LIBRARIES =
MAKE = make -i -r
IS CONFIGURED CORRECTLY?
I GET THE FOLLOWING ERROR:
./parseconfig.c:139: aviso: declaracin implcita incompatible de la funcin interna exit
...
ifort -c -I../../include -O3 -convert big_endian -openmp -DDEC_ALPHA -override-limits addall.F
parame.incl(105): #warning: illegal token on preprocessor directive line.
addall.F(526): #warning: illegal token on preprocessor directive line.
MY COMPUTER HAS THE FOLLOWING FEATURES:
Ubuntu 8.04
Intel Fortran Compiler 11.0 (0.84)
PROCESOR:
angelo@sony-vaio:~$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 14
model name : Genuine Intel CPU T2250 @ 1.73GHz
stepping : 8
cpu MHz : 800.000
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr
bogomips : 3458.04
clflush size : 64
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 14
model name : Genuine Intel CPU T2250 @ 1.73GHz
stepping : 8
cpu MHz : 800.000
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr
bogomips : 3458.15
clflush size : 64
CORE:
angelo@sony-vaio:~$ uname -a
Linux sony-vaio 2.6.24-24-generic #1 SMP Fri Sep 18 16:49:39 UTC 2009 i686 GNU/Linux
RUNTIME_SYSTEM = "linux"
FC = ifort
CC = icc
#FCFLAGS = -I$(LIBINCLUDE) -axSSE4.1 -pc 32 -O3 -convert big_endian -openmp -DDEC_ALPHA -override-limits
FCFLAGS = -I$(LIBINCLUDE) -O3 -convert big_endian -openmp -DDEC_ALPHA -override-limits
CPP = /lib/cpp
CFLAGS = -O -DDEC_ALPHA -DSGI_IA64
CPPFLAGS = -I$(LIBINCLUDE) -DDEC_ALPHA
LDOPTIONS = $(FCFLAGS)
LOCAL_LIBRARIES =
MAKE = make -i -r
IS CONFIGURED CORRECTLY?
I GET THE FOLLOWING ERROR:
./parseconfig.c:139: aviso: declaracin implcita incompatible de la funcin interna exit
...
ifort -c -I../../include -O3 -convert big_endian -openmp -DDEC_ALPHA -override-limits addall.F
parame.incl(105): #warning: illegal token on preprocessor directive line.
addall.F(526): #warning: illegal token on preprocessor directive line.
MY COMPUTER HAS THE FOLLOWING FEATURES:
Ubuntu 8.04
Intel Fortran Compiler 11.0 (0.84)
PROCESOR:
angelo@sony-vaio:~$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 14
model name : Genuine Intel CPU T2250 @ 1.73GHz
stepping : 8
cpu MHz : 800.000
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr
bogomips : 3458.04
clflush size : 64
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 14
model name : Genuine Intel CPU T2250 @ 1.73GHz
stepping : 8
cpu MHz : 800.000
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr
bogomips : 3458.15
clflush size : 64
CORE:
angelo@sony-vaio:~$ uname -a
Linux sony-vaio 2.6.24-24-generic #1 SMP Fri Sep 18 16:49:39 UTC 2009 i686 GNU/Linux
Link Copied
4 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ALPHA and IA64 are completely different platforms. I don't know whether anyone has attempted to run this application lately on 32-bit OS, but telling the preprocessor it is more than one unrelated 64-bit platform doesn't look plausible. You might start with less aggressive optimizations.
When you get rejected source lines, why not quote those lines?
When you get rejected source lines, why not quote those lines?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ACTUALLY THIS SET WAS MADE configure.user ARCHIVE FOR COMPUTER x86_64 GNU / Linux.
HOW SHOULD I SET UP MY COMPUTER AS THEIR OWN CARACTERITICAS I described in the previous comment?
HOW SHOULD I SET UP MY COMPUTER AS THEIR OWN CARACTERITICAS I described in the previous comment?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
As I edit configure.user to run fine on my computer if you have the following characteristics?:
Ubuntu 8.04
Intel Fortran Compiler 11.0 (0.84)
PROCESOR:
angelo@sony-vaio:~$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 14
model name : Genuine Intel CPU T2250 @ 1.73GHz
stepping : 8
cpu MHz : 800.000
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr
bogomips : 3458.04
clflush size : 64
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 14
model name : Genuine Intel CPU T2250 @ 1.73GHz
stepping : 8
cpu MHz : 800.000
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr
bogomips : 3458.15
clflush size : 64
CORE:
angelo@sony-vaio:~$ uname -a
Linux sony-vaio 2.6.24-24-generic #1 SMP Fri Sep 18 16:49:39 UTC 2009 i686 GNU/Linux
What things should I add?
RUNTIME_SYSTEM = ?
FC = ?
CC = ?
FCFLAGS = ?
CPP = /lib/cpp
CFLAGS = ?
CPPFLAGS = ?
LDOPTIONS = ?
LOCAL_LIBRARIES = ?
MAKE = ?
Ubuntu 8.04
Intel Fortran Compiler 11.0 (0.84)
PROCESOR:
angelo@sony-vaio:~$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 14
model name : Genuine Intel CPU T2250 @ 1.73GHz
stepping : 8
cpu MHz : 800.000
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr
bogomips : 3458.04
clflush size : 64
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 14
model name : Genuine Intel CPU T2250 @ 1.73GHz
stepping : 8
cpu MHz : 800.000
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor est tm2 xtpr
bogomips : 3458.15
clflush size : 64
CORE:
angelo@sony-vaio:~$ uname -a
Linux sony-vaio 2.6.24-24-generic #1 SMP Fri Sep 18 16:49:39 UTC 2009 i686 GNU/Linux
What things should I add?
RUNTIME_SYSTEM = ?
FC = ?
CC = ?
FCFLAGS = ?
CPP = /lib/cpp
CFLAGS = ?
CPPFLAGS = ?
LDOPTIONS = ?
LOCAL_LIBRARIES = ?
MAKE = ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I GET THE FOLLOWING ERROR:
./parseconfig.c:139: aviso: declaracin implcita incompatible de la funcin interna exit
I assume you've already fixed this one, correct?
ifort -c -I../../include -O3 -convert big_endian -openmp -DDEC_ALPHA -override-limits addall.F
parame.incl(105): #warning: illegal token on preprocessor directive line.
addall.F(526): #warning: illegal token on preprocessor directive line.
This error is telling you that there is something bad on line 105 in file parame.inc that the compiler does not like.
What does that line look like?
The following error is telling you that there is something bad on line 526 in file addall.F that the compiler does not like. What does that line look like?
- Lorri

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page