There are a whole lot of compilation flags existing to get more control over how a module is compiled. You can get a list of all of them in the Erlang documentation. The most common flags are:
_______________________________________________
erlang-questions mailing list
erlang-q...@erlang.org
http://erlang.org/mailman/listinfo/erlang-questions
Hmm... let's see your options:
1. Re-create these .beam files by using the BEAM compiler option
debug_info. (You specify it as +debug_info to erlc.)
2. Analyze the .erl files that correspond to these .beam files.
Option #1 is typically easier (because you do not need to specify
possible define values or include paths) but it's your choice really.
Kostis