Changeset 1764 in Sophya for trunk/ArchTOIPipe
- Timestamp:
- Nov 14, 2001, 3:10:13 PM (24 years ago)
- Location:
- trunk/ArchTOIPipe
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/Kernel/Makefile.in
r1732 r1764 36 36 endif 37 37 ifeq ($(CXX), CC) 38 CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 39 CFLAGS = -O -OPT:Olimit=0 38 CXXFLAGS = -O 39 CFLAGS = -O 40 # CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 41 # CFLAGS = -O -OPT:Olimit=0 40 42 endif 41 43 endif -
trunk/ArchTOIPipe/Kernel/flagtoidef.h
r1738 r1764 4 4 // Christophe Magneville 5 5 // Reza Ansari 6 // $Id: flagtoidef.h,v 1. 4 2001-11-08 15:47:45aubourg Exp $6 // $Id: flagtoidef.h,v 1.5 2001-11-14 14:10:13 aubourg Exp $ 7 7 8 8 #ifndef FLAGTOIDEF_H … … 25 25 FlgToiAround = (unsigned long long)1 << 6, 26 26 // All bit to one ... 27 FlgToiAll = ( unsigned long long)~027 FlgToiAll = (int)(unsigned long long)~0 28 28 }; 29 29 -
trunk/ArchTOIPipe/Makefile.in
r1749 r1764 53 53 endif 54 54 ifeq ($(CXX), CC) 55 CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 56 CFLAGS = -O -OPT:Olimit=0 55 CXXFLAGS = -O 56 CFLAGS = -O 57 # CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 58 # CFLAGS = -O -OPT:Olimit=0 57 59 endif 58 60 endif -
trunk/ArchTOIPipe/ProcWSophya/Makefile.in
r1739 r1764 28 28 ifeq ($(MACHEROS),IRIX64) 29 29 ifeq ($(CXX), CC) 30 CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 31 CFLAGS = -O -OPT:Olimit=0 30 CXXFLAGS = -O 31 CFLAGS = -O 32 # CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 33 # CFLAGS = -O -OPT:Olimit=0 32 34 endif 33 35 endif -
trunk/ArchTOIPipe/ProcWSophya/rztoi.cc
r1738 r1764 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: rztoi.cc,v 1.8 2001-11-08 15:47:45 aubourg Exp $ 6 5 // $Id: rztoi.cc,v 1.9 2001-11-14 14:10:13 aubourg Exp $ 6 7 #include "config.h" 7 8 #include "array.h" 8 9 #include "rztoi.h" -
trunk/ArchTOIPipe/ProcWSophya/simtoipr.cc
r1762 r1764 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: simtoipr.cc,v 1.16 2001-11-13 16:22:47 aubourg Exp $ 5 // $Id: simtoipr.cc,v 1.17 2001-11-14 14:10:13 aubourg Exp $ 6 7 #include "config.h" 6 8 7 9 #include "array.h" -
trunk/ArchTOIPipe/ProcWSophya/smoothtoi.cc
r1762 r1764 80 80 } 81 81 82 for(int_4 sn=snb;sn<=sne;sn++) {82 {for(int_4 sn=snb;sn<=sne;sn++) { 83 83 84 84 r_8 bolo; uint_8 fgbolo=0; … … 123 123 124 124 putData(0,sn,bolo,fgbolo); 125 } 125 }} 126 126 cout<<"DataSmooth::run(): Fin de boucle: notsmoothed="<<notsmoothed 127 127 <<" / tot="<<sne-snb+1<<endl; -
trunk/ArchTOIPipe/Processors/Makefile.in
r1732 r1764 31 31 ifeq ($(MACHEROS),IRIX64) 32 32 ifeq ($(CXX), CC) 33 CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 34 CFLAGS = -O -OPT:Olimit=0 33 CXXFLAGS = -O 34 CFLAGS = -O 35 # CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 36 # CFLAGS = -O -OPT:Olimit=0 35 37 endif 36 38 endif -
trunk/ArchTOIPipe/TestPipes/Makefile.in
r1732 r1764 63 63 endif 64 64 ifeq ($(CXX), CC) 65 CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 66 CFLAGS = -O -OPT:Olimit=0 65 CXXFLAGS = -O 66 CFLAGS = -O 67 # CXXFLAGS = -LANG:std -woff 1171,1174,1552 -O -OPT:Olimit=0 68 # CFLAGS = -O -OPT:Olimit=0 67 69 endif 68 70 endif -
trunk/ArchTOIPipe/config.h
r1663 r1764 3 3 4 4 #define _GNU_SOURCE 5 6 // mostly because of the archaic IRIX CC compiler 7 namespace std{} 8 using namespace std; 9 5 10 6 11 #include "conf.h" … … 36 41 #endif 37 42 43 #ifdef __SGICC__ 44 namespace std { } 45 using namespace std; 38 46 #endif 39 47 48 #endif 49
Note:
See TracChangeset
for help on using the changeset viewer.