From tk at Informatik.TU-Cottbus.DE Tue Oct 24 05:34:07 2006 From: tk at Informatik.TU-Cottbus.DE (Thomas Kobienia) Date: Mon, 23 Oct 2006 22:34:07 +0200 Subject: [SCore-users] SCore 5.8.3 on fedora core 5 Message-ID: <20061023203407.GA30903@ginger.Informatik.TU-Cottbus.DE> Hi, I've been trying to compile score 5.8.3 on fedora core 5. gcc was not able to compile the files: - score-src/SCore/scoredlib/usr/ckpt.c - score-src/SCore/mttl-ult/ult/stack.c Both files needed the macros JB_SP and JB_PC. I don't get the errors on centos 4.3 or debian (sarge). I made a patch to define the macros in the related header files. Is there a better solution? (compilation tested with gcc 4.1 and 3.2. I found (thanks google) the site http://www.pccluster.org/xoopsjp/modules/pukiwiki/?kameyama%2Ffedora5 . Are there necessary tips for buildung score on fedora core 5? I don't understand japanese. next problem: Since last week we have new compute nodes with tyan tempest i5000vf boards with intel dempsey dualcore cpus. The motherboards have an intel ESB2 i/o controller hub with integrated gigabit. These lan controllers are supported by linux since version 2.6.17. But there is only a patch for version 2.6.11. Are there tips or solution for this problem? (The first time is my hardware to new for the software.) minor problem: Udev in FC5 is to new for linux 2.6.11. Regards, Thomas Kobienia From hori at allinea.com Tue Oct 24 10:18:50 2006 From: hori at allinea.com (Atsushi HORI) Date: Tue, 24 Oct 2006 10:18:50 +0900 Subject: [SCore-users] SCore 5.8.3 on fedora core 5 In-Reply-To: <20061023203407.GA30903@ginger.Informatik.TU-Cottbus.DE> References: <20061023203407.GA30903@ginger.Informatik.TU-Cottbus.DE> Message-ID: <103FA063-8068-4297-9E84-FB2AE501E775@allinea.com> On 2006/10/24, at 5:34, Thomas Kobienia wrote: > I've been trying to compile score 5.8.3 on fedora core 5. gcc was not > able to compile the files: > - score-src/SCore/scoredlib/usr/ckpt.c > - score-src/SCore/mttl-ult/ult/stack.c > Both files needed the macros JB_SP and JB_PC. I don't get the errors > on centos 4.3 or debian (sarge). I made a patch to define the macros > in the related header files. Is there a better solution? > (compilation tested with gcc 4.1 and 3.2. Hi, I faced the same problem. In the score-src/SCore/mttl-ult/ult/mpcxx_defs.h file, you will the following line ---- /** use Sys-V user context for high portability but low performance **/ #define ULT_USE_USER_CONTEXT --- and uncomment the line. Then it will not use the JB_SP not JB_PC. Next, change the score-src/SCore/build/config/score file. ----- ######################################################################## ## #### checkpoint configuration parameters #### ######################################################################## ## # -DSCORE_NO_CHECKPOINT # Disables all checkpointing facilities. This switch overrides # all other switches. # -DSCORE_CKPT_NO_SC_OVERRIDE # Disables all system call overrides. Restoring mmap(2)ed # memory area and file descriptor are disabled. # CKPT_CONFIG_PARAMS = -DSCORE_NO_CHECKPOINT ---- As in the above, "-DSCORE_NO_CHECKPOINT" should be added to the config params. This disables the checkpoint/restart. --- All the above problems are fixed in the upcoming SCore 6.0 which will be release next month. From hori at allinea.com Tue Oct 24 10:33:11 2006 From: hori at allinea.com (Atsushi HORI) Date: Tue, 24 Oct 2006 10:33:11 +0900 Subject: [SCore-users] SCore 5.8.3 on fedora core 5 In-Reply-To: <20061023203407.GA30903@ginger.Informatik.TU-Cottbus.DE> References: <20061023203407.GA30903@ginger.Informatik.TU-Cottbus.DE> Message-ID: On 2006/10/24, at 5:34, Thomas Kobienia wrote: > I found (thanks google) the site > http://www.pccluster.org/xoopsjp/modules/pukiwiki/?kameyama% > 2Ffedora5 . > Are there necessary tips for buildung score on fedora core 5? I don't > understand japanese. Oh, I forgot to comment on this. This web page is just an internal memo for the porting SCore to Fedora 5. However, from SCore 6.0, our distribution will be based on CentOS (4.4 at this moment).