Parrot is a virtual machine designed to efficiently compile and execute bytecode for dynamic languages. Initially build for Perl 6, it strive to implement many different languages and provide a compatible cross-language data representation. Parrot currently hosts a variety of language ...
0
votes
0answers
34 views
Perl6 pbc_to_exe error (how to build gmp)?
I try to convert Perl6 script to executable:
perl6.exe --target=PIR hello.pl > hello.pir
parrot.exe -o hello.pbc hello.pir
pbc_to_exe.exe hello.pbc > hello
error output:
ld.exe: cannot find ...
2
votes
2answers
658 views
Xuggler and playing from live stream
We're currently busy with a project in which we are trying to play a video file in a window from a live stream in Java. We've already managed to capture the stream via a Socket object using an ...
0
votes
0answers
103 views
Comparison of programming language vm performance [closed]
I'm interested in seeing how the Parrot VM stacks up against other VMs. Has anyone done any performance comparisons between it and say JVM, CLR and LLVM? If so, can you point me to them?
If no such ...
1
vote
1answer
202 views
Ports of the Parrot VM
Is there a list of the operating systems for which the Parrot virtual machine can be built? I would rather not go through the release notes of every version to figure it out.
1
vote
2answers
174 views
Parrot VM and Static Languages
Can you create a statically typed language in Parrot VM or does it have to be dynamically typed?
1
vote
1answer
43 views
Can I use Parrot Compiler Tools from installed parrot-devel package on Linux?
I am interested in creating my own language using Parrot VM.
I have installed the parrot-devel package along with parrot and dependencies (using Synaptic package manager under Linux Mint 11).
I ...
4
votes
2answers
343 views
Why to use Parrot (or other VM) if I have an interpreter?
Why should I use VM, like Parrot, for a dynamic language I use (Python, Perl, ...) if I already have an interpreter? What can I potentially gain, for the cost of having different VM between my code ...
7
votes
3answers
5k views
LLVM, Parrot, JVM, PyPy + python
What is the problem in developing some languages, for example python for some optimized techniques with some of LLVM / Parrot.
PyPy, LLVM, Parrot are the main technologies for common platform ...
4
votes
2answers
395 views
Parrot - Can I use it? And how?
I've had an eye on Parrot for a little while. I understand that it's a virtual machine designed to run a variety of dynamic languages, and to allow a degree of interoperability (e.g. calling a Perl ...
7
votes
2answers
544 views
Is Ruby or other language going to run faster on Parrot?
I just saw that there is a Ruby to Parrot compiler called Cardinal, which can create code to run on Parrot, which is a VM that can run byte-code. How is the performance of Ruby or any language ...
3
votes
1answer
405 views
What's the benefit of Parrot VM for end-users?
What's the benefit of the Parrot Virtual Machine for end-users (software developers)?
For example, if I could program against Perl or Python directly why would I bother programming for them under ...
4
votes
2answers
285 views
Are there up-to-date Parrot language tutorials?
I'm interested in playing around with the Parrot VM, but all the tutorials (and many of the docs) seem out-of-date. There there any up-to-date tutorials out there in the interwebs?
11
votes
3answers
415 views
What is the release date for Rakudo Star (perl6)? [closed]
If a specific release date is not available (as I suspect it is not), can you provide resources for tracking how close it is to the desired feature set that allows release.
I'm not necessarily asking ...
8
votes
4answers
620 views
What is a good VM for developing a hobby language?
I'm thinking about writing my own little language.
I found a few options, but feel free to suggest more.
JVM
Parrot
OSA
A lot of languages are using the JVM, but unless you write a Java-ish ...
20
votes
4answers
3k views
How does Parrot compare to other virtual machines?
Parrot is the virtual machine originally designed for Perl 6.
What technical capabilities does the Parrot VM offer that competing virtual machines such as the Java Virtual Machine (JVM)/Hotspot VM ...
5
votes
2answers
1k views
Do VMs like LLVM or PARROT allow usage of the same library from multiple languages?
Is it possible to use one framework written in one Parrot (LLVM) language in any other Parrot (LLVM) language?
(Like usage of .NET Framework from any CLR language)...
12
votes
4answers
504 views
How do I get started with Perl 6?
I'd like to get your opinion on How to get started with Perl 6?
Shall one use Rakudo which is being build on Parrot or still better go with the Pugs implementation?
If Rakudo, what is the best way to ...
0
votes
2answers
270 views
Does Parrot have a database interface or API?
A quick search gave me this announcement of Parrot DBDI from January 2004 and a dbdi-dev mailing list which appears to be long dead. Is Parrot DBDI still being developed? Is anyone working on a ...
18
votes
7answers
2k views
What exactly is Parrot?
I understand that Parrot is a virtual machine, but I feel like I'm not completely grasping the idea behind it.
As I understand, it's a virtual machine that's being made to handle multiple languages. ...