Is there a way to actually write a compiler in it's own language?
If you
You have to bootstrap have some existing language to write your new compiler in. If you were writing a new, say, C++ compiler, you would just write it in C++ and compile it with an existing compiler first. On the other hand, if you were creating a compiler for a new language, then let's call it Yazzleof, you (generally) would need to write the new compiler in another language first. Generally, this would be another programming language, but it doesn't have to be. It can be assembly, or if necessary, machine code.
If you were going to bootstrap a compiler for Yazzleof, you generally wouldn't write a compiler for the full language initially. Instead you would write a compiler for Yazzle-lite, the smallest possible subset of the new languageYazzleof (well, a pretty small subset at least). Then in that subsetYazzle-lite, you would write a compiler for the full language. (Obviously this can occur iteratively instead of in one jump.)
You have to have some existing language to write your new compiler. Generally, this would be another programming languageBecause Yazzle-lite is a proper subset of Yazzleof, but it doesn't you now have to be. It a compiler which can be assembly, or if necessary, machine codecompile itself.
There is a really good writeup about bootstrapping a compiler from the lowest possible level (which on a modern machine is basically a hex editor), titled Bootstrapping a simple compiler from nothing. It used to be hosted at http://www.rano.org/bcompiler.html, but that link is dead now. If you run across it, it's a great read. (And if anyone knows where I could get a working copy, I'd really appreciate a link.)
