Mercurial > hg-old > index.cgi
annotate lwlink/trunk/src/main.c @ 127:44dd2f2e42a7
Fixed reading object file incomplete references table
author | lost |
---|---|
date | Fri, 23 Jan 2009 05:49:16 +0000 |
parents | f9bfc2986023 |
children |
rev | line source |
---|---|
112 | 1 /* |
2 main.c | |
118 | 3 Copyright © 2009 William Astle |
112 | 4 |
5 This file is part of LWLINK. | |
6 | |
7 LWLINK is free software: you can redistribute it and/or modify it under the | |
8 terms of the GNU General Public License as published by the Free Software | |
9 Foundation, either version 3 of the License, or (at your option) any later | |
10 version. | |
11 | |
12 This program is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
15 more details. | |
16 | |
17 You should have received a copy of the GNU General Public License along with | |
18 this program. If not, see <http://www.gnu.org/licenses/>. | |
19 | |
20 | |
21 Implements the program startup code | |
22 | |
23 */ | |
24 | |
25 #ifdef HAVE_CONFIG_H | |
26 #include "config.h" | |
27 #endif | |
28 | |
29 #include <argp.h> | |
30 #include <errno.h> | |
31 #include <stdio.h> | |
32 #include <stdlib.h> | |
33 | |
34 #include "lwlink.h" | |
35 | |
36 // command line option handling | |
37 const char *argp_program_version = PACKAGE_STRING; | |
38 const char *argp_program_bug_address = PACKAGE_BUGREPORT; | |
39 | |
40 static error_t parse_opts(int key, char *arg, struct argp_state *state) | |
41 { | |
42 switch (key) | |
43 { | |
44 case 'o': | |
45 // output | |
46 outfile = arg; | |
47 break; | |
48 | |
117 | 49 case 's': |
50 // script file | |
51 scriptfile = arg; | |
52 break; | |
53 | |
112 | 54 case 'd': |
55 // debug | |
56 debug_level++; | |
57 break; | |
58 | |
59 case 'b': | |
60 // decb output | |
61 outformat = OUTPUT_DECB; | |
62 break; | |
63 | |
64 case 'r': | |
65 // raw binary output | |
66 outformat = OUTPUT_RAW; | |
67 break; | |
68 | |
69 case 'f': | |
70 // output format | |
71 if (!strcasecmp(arg, "decb")) | |
72 outformat = OUTPUT_DECB; | |
73 else if (!strcasecmp(arg, "raw")) | |
74 outformat = OUTPUT_RAW; | |
75 else | |
76 { | |
77 fprintf(stderr, "Invalid output format: %s\n", arg); | |
78 exit(1); | |
79 } | |
80 break; | |
81 case ARGP_KEY_END: | |
82 // done; sanity check | |
83 if (!outfile) | |
84 outfile = "a.out"; | |
85 break; | |
86 | |
87 case ARGP_KEY_ARG: | |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
88 add_input_file(arg); |
112 | 89 break; |
90 | |
91 default: | |
92 return ARGP_ERR_UNKNOWN; | |
93 } | |
94 return 0; | |
95 } | |
96 | |
97 static struct argp_option options[] = | |
98 { | |
99 { "output", 'o', "FILE", 0, | |
100 "Output to FILE"}, | |
101 { "debug", 'd', 0, 0, | |
102 "Set debug mode"}, | |
103 { "format", 'f', "TYPE", 0, | |
104 "Select output format: decb, raw, obj"}, | |
105 { "decb", 'b', 0, 0, | |
106 "Generate DECB .bin format output, equivalent of --format=decb"}, | |
107 { "raw", 'r', 0, 0, | |
108 "Generate raw binary format output, equivalent of --format=raw"}, | |
125
f9bfc2986023
Actually allow script file to be specified and fix segfault on parsing script file
lost
parents:
121
diff
changeset
|
109 { "script", 's', "FILE", 0, |
117 | 110 "Specify the linking script (overrides the build in defaults)"}, |
112 | 111 { 0 } |
112 }; | |
113 | |
114 static struct argp argp = | |
115 { | |
116 options, | |
117 parse_opts, | |
118 "<input file> ...", | |
119 "LWLINK, a HD6309 and MC6809 cross-linker" | |
120 }; | |
121 | |
115 | 122 extern void read_files(void); |
117 | 123 extern void setup_script(void); |
119 | 124 extern void resolve_sections(void); |
121 | 125 extern void resolve_references(void); |
126 extern void do_output(void); | |
115 | 127 |
112 | 128 // main function; parse command line, set up assembler state, and run the |
129 // assembler on the first file | |
130 int main(int argc, char **argv) | |
131 { | |
132 argp_parse(&argp, argc, argv, 0, 0, NULL); | |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
133 if (ninputfiles == 0) |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
134 { |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
135 fprintf(stderr, "No input files\n"); |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
136 exit(1); |
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
137 } |
115 | 138 |
119 | 139 // handle the linker script |
117 | 140 setup_script(); |
141 | |
115 | 142 // read the input files |
143 read_files(); | |
114
c65fcec346cd
Handle input files on command line and add some memory management utility functions
lost
parents:
112
diff
changeset
|
144 |
119 | 145 // resolve section bases and section order |
146 resolve_sections(); | |
147 | |
121 | 148 // resolve incomplete references |
149 resolve_references(); | |
150 | |
151 // do the actual output | |
152 do_output(); | |
153 | |
112 | 154 exit(0); |
155 } |