If you're willing to give into the dark side, there are some experimental "compilers" (i.e. translate to C) for Perl. I don't know how you feel about that - a lot of Python fanatics (not that all Python users are fanatical) seem to hate it with a passion for no real justifiable reason, but I suppose people must have their religious opinions.
For what it's worth, for most "higher-level" languages out there, any real compiler is basically just going to be bundling your program with a runtime. If you really don't want that, you're going to have to use C (and even C requires a standard library, though no usable system doesn't come with one already) or C++ (see previous).
You could try Haskell, which should compile directly to machine code, but might not have mature enough libraries for your tastes, and will probably hurt your brain while you try to learn it. Or maybe Erlang, if you need concurrency badly, though I don't know if it's specifically process spawning or just generally strong support for concurrency. There should also be compilers for various Lisp dialects out there, but once again I don't know how well suited the language/libraries may be for your tasks.