7 comments

[ 0.20 ms ] story [ 11.4 ms ] thread
One advantage of environments like C, C++, Java, is that the default end-product of the development process is deployment.

With Smalltalk, you have to strip the development and other unused stuff out of the image, which is a messy business that can lead to exceptions showing up in front of the customer if you don't do it right. Many places just leave all that stuff in the image. It's unnecessary overhead, but Moore's law and the similar increase in disk capacity has made that into a rounding error.

(This is also why debugging and development are so magical in environments like Smalltalk. It's the default case. Debugging is often so painless, people use it to document!)

I had tried using SBCL to generate excutables before myself, using SDL as an external lib. Worked, but they were ENORMOUS (20mb). Not sure what I did wrong.
Well, it's basically a memory dump. Disk space is cheap.