Displaying 3 results from an estimated 3 matches for "sprite_libinstall".
2014 Sep 01
2
[LLVMdev] Problem linking and JITing code through C++-API
...+ path : dirname + "/" + path;
}
}
int main(int argc, char const *argv[])
{
if(argc != 2)
{
std::cerr << "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...
2014 Sep 02
2
[LLVMdev] Problem linking and JITing code through C++-API
...)
>
> {
>
> if(argc != 2)
>
> {
>
> std::cerr << "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"
>
>...
2014 Sep 08
2
[LLVMdev] Problem linking and JITing code through C++-API
...{
> >
> > std::cerr << "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(curr...