Hello everyone,
For my job i must execute C sharp code on Linux, on sniper.
I have find a compiler who make that.
The hello world run correctly run on linux and also in sniper, but i have the present error.
Sift can't correctly read the Tracefiles, and the error succes is the result of the singleton acces to tthread acces to manage set/get affinity().
success = Sim()->getThreadManager()->getScheduler()->threadGetAffinity(
if i also understand, sift try to open trace file name as /tmp/tmpR1BCuM/run_benchmarks_response.app1.th0.sift
console error return:
EXECV ignored while in ROI
[SIFT:1] Error: Success
[TRACE:1] -- DONE --
EXECV ignored while in ROI
Hello Mono World
[SIFT:0] Error: No such file or directory
[TRACE:0] -- DONE --
[SNIPER] Disabling performance models
Trevor, can you help me to understand that problème.
i have also problème whith c++ code with c++ schedulling on generated code.
have a good day
c# code easy^
using System;
public class HelloWorld
{
public static void Main(string[] args)
{
Console.WriteLine ("Hello Mono World");
}
}