Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
6answers
3k views

Are there Lisp native code compilers?

Are there native code compilers for Lisp? To which extent can it even be compiled, with all it's dynamic nature, garbage collection, macros and what else?
8
votes
4answers
2k views

Is there a native machine code compiler for JavaScript?

Is there a native machine code compiler for JavaScript? I'm not talking about a VM. If it doesn't exist can it be done? I am wondering if it can be compiled to binary due to the dynamic nature of the ...
3
votes
3answers
182 views

“Compiling php” as in making it portable

I'm not intrested in compiling for performance but in being able to "compile" a php script in order to carry it on a usb stick or portable hard drive. I think that there may be two way: 1) Portable ...
3
votes
6answers
361 views

Can c# compiled app run on machine where .net is not installed?

I want to develop a small utility for windows and I prefer doing that in c# because it is easier (I'm a java developer). The utility will be available for download by many people and I assume some ...
2
votes
5answers
189 views

Making Native .Net exectuables?

I know this question has been asked, but I found out that microsoft has recently released the source code for the entire .Net Framework. I was wondering that since now this source is available, if it ...