Displaying 3 results from an estimated 3 matches for "readablefile".
2014 Sep 01
2
[LLVMdev] Problem linking and JITing code through C++-API
...t;< "Usage: " << argv[0] << " <file.curry>" << std::endl;
return 1;
}
std::string const curry2read =
std::string(SPRITE_LIBINSTALL) + "/cmc/translator/bin/curry2read";
std::string const curryfile(argv[1]);
std::string const readablefile = joinpath(
dirname(curryfile)
, ".curry/" + remove_extension(basename(curryfile)) + ".read"
);
// Generate the readable Curry file.
int ok = std::system((curry2read + " -q " + curryfile).c_str());
if(ok != 0) return 1;
std::ifstream input(readab...
2014 Sep 02
2
[LLVMdev] Problem linking and JITing code through C++-API
...ile.curry>" << std::endl;
>
> return 1;
>
> }
>
> std::string const curry2read =
>
> std::string(SPRITE_LIBINSTALL) + "/cmc/translator/bin/curry2read";
>
> std::string const curryfile(argv[1]);
>
> std::string const readablefile = joinpath(
>
> dirname(curryfile)
>
> , ".curry/" + remove_extension(basename(curryfile)) + ".read"
>
> );
>
> // Generate the readable Curry file.
>
> int ok = std::system((curry2read + " -q " + curryfile).c_str())...
2014 Sep 08
2
[LLVMdev] Problem linking and JITing code through C++-API
...return 1;
> >
> > }
> >
> > std::string const curry2read =
> >
> > std::string(SPRITE_LIBINSTALL) + "/cmc/translator/bin/curry2read";
> >
> > std::string const curryfile(argv[1]);
> >
> > std::string const readablefile = joinpath(
> >
> > dirname(curryfile)
> >
> > , ".curry/" + remove_extension(basename(curryfile)) + ".read"
> >
> > );
> >
> > // Generate the readable Curry file.
> >
> > int ok = std::system((c...