1 /* outform.h header file for binding output format drivers to the
2 * remainder of the code in the Netwide Assembler
4 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
5 * Julian Hall. All rights reserved. The software is
6 * redistributable under the licence given in the file "Licence"
7 * distributed in the NASM archive.
11 * This header file allows configuration of which output formats
12 * get compiled into the NASM binary. You can configure by defining
13 * various preprocessor symbols beginning with "OF_", either on the
14 * compiler command line or at the top of this file.
16 * OF_ONLY -- only include specified object formats
17 * OF_name -- ensure that output format 'name' is included
18 * OF_NO_name -- remove output format 'name'
19 * OF_DOS -- ensure that 'obj', 'bin' & 'win32' are included.
20 * OF_UNIX -- ensure that 'aout', 'aoutb', 'coff', 'elf' are in.
21 * OF_OTHERS -- ensure that 'bin', 'as86' & 'rdf' are in.
22 * OF_ALL -- ensure that all formats are included.
24 * OF_DEFAULT=of_name -- ensure that 'name' is the default format.
26 * eg: -DOF_UNIX -DOF_ELF -DOF_DEFAULT=of_elf would be a suitable config
27 * for an average linux system.
29 * Default config = -DOF_ALL -DOF_DEFAULT=of_bin
31 * You probably only want to set these options while compiling 'nasm.c'. */
33 #ifndef NASM_OUTFORMS_H
34 #define NASM_OUTFORMS_H
38 /* -------------- USER MODIFIABLE PART ---------------- */
41 * Insert #defines here in accordance with the configuration
50 * for a 16-bit DOS assembler with no extraneous formats.
53 /* ------------ END USER MODIFIABLE PART -------------- */
55 /* ====configurable info begins here==== */
56 /* formats configurable:
57 * bin,obj,elf,aout,aoutb,coff,win32,as86,rdf */
59 /* process options... */
63 #define OF_ALL /* default is to have all formats */
67 #ifdef OF_ALL /* set all formats on... */
97 /* turn on groups of formats specified.... */
137 /* finally... override any format specifically specifed to be off */
167 #define OF_DEFAULT of_bin
170 #ifdef BUILD_DRIVERS_ARRAY /* only if included from outform.c */
172 /* pull in the externs for the different formats, then make the *drivers
173 * array based on the above defines */
175 extern struct ofmt of_bin
;
176 extern struct ofmt of_aout
;
177 extern struct ofmt of_aoutb
;
178 extern struct ofmt of_coff
;
179 extern struct ofmt of_elf
;
180 extern struct ofmt of_as86
;
181 extern struct ofmt of_obj
;
182 extern struct ofmt of_win32
;
183 extern struct ofmt of_rdf
;
184 extern struct ofmt of_dbg
;
186 struct ofmt
*drivers
[]={
221 #endif /* BUILD_DRIVERS_ARRAY */
223 #endif /* NASM_OUTFORMS_H */