diff options
Diffstat (limited to 'note_compiler/main.cpp')
-rw-r--r-- | note_compiler/main.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/note_compiler/main.cpp b/note_compiler/main.cpp index 3015551..38302ef 100644 --- a/note_compiler/main.cpp +++ b/note_compiler/main.cpp @@ -802,9 +802,17 @@ void generate_source() int main(int argc, char** argv) { - prog=parse("../../filtertest.prog"); + try + { + cerr << "parsing '"<<argv[1]<<"'..." << endl; + prog=parse(argv[1]); - generate_source(); + generate_source(); + } + catch(string err) + { + cerr << "FATAL: "<<err<<endl; + } return 0; } |