1 /* rustspec.c -- Specific flags and argument handling of the gcc Rust front end.
2 Copyright (C) 2009-2023 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
26 // satisfy intellisense
29 /* This bit is set if we saw a `-xfoo' language specification. */
30 #define LANGSPEC (1 << 1)
31 /* This bit is set if they did `-lc'. */
32 #define WITHLIBC (1 << 2)
33 /* Skip this option. */
34 #define SKIPOPT (1 << 3)
37 lang_specific_driver (struct cl_decoded_option
**in_decoded_options
,
38 unsigned int *in_decoded_options_count
,
39 int *in_added_libraries
)
43 /* The new argument list will be contained in this. */
44 struct cl_decoded_option
*new_decoded_options
;
46 /* "-lc" if it appears on the command line. */
47 const struct cl_decoded_option
*saw_libc
= 0;
49 /* An array used to flag each argument that needs a bit set for
50 LANGSPEC or WITHLIBC. */
53 /* True if we saw -static. */
56 /* True if we should add -shared-libgcc to the command-line. */
57 int shared_libgcc
= 1;
59 /* The total number of arguments with the new stuff. */
62 /* The argument list. */
63 struct cl_decoded_option
*decoded_options
;
65 /* The number of libraries added in. */
68 /* The total number of arguments with the new stuff. */
71 /* Whether the -o option was used. */
72 bool saw_opt_o
= false;
74 /* The first input file with an extension of .rs. */
75 const char *first_rust_file
= NULL
;
77 argc
= *in_decoded_options_count
;
78 decoded_options
= *in_decoded_options
;
79 added_libraries
= *in_added_libraries
;
81 args
= XCNEWVEC (int, argc
);
83 for (i
= 1; i
< argc
; i
++)
85 const char *arg
= decoded_options
[i
].arg
;
87 switch (decoded_options
[i
].opt_index
)
90 if (strcmp (arg
, "c") == 0)
102 case OPT_static_libgcc
:
106 case OPT_SPECIAL_input_file
:
107 if (first_rust_file
== NULL
)
112 if (len
> 3 && strcmp (arg
+ len
- 3, ".rs") == 0)
113 first_rust_file
= arg
;
117 // FIXME: ARTHUR: Do we want to error here? If there's already one
119 // How do we error here? Do we want to instead just handle that in
120 // the session manager?
127 /* There's no point adding -shared-libgcc if we don't have a shared
129 #ifndef ENABLE_SHARED_LIBGCC
133 /* Make sure to have room for the trailing NULL argument. */
134 num_args
= argc
+ shared_libgcc
* 5 + 10;
135 new_decoded_options
= XNEWVEC (struct cl_decoded_option
, num_args
);
140 /* Copy the 0th argument, i.e., the name of the program itself. */
141 new_decoded_options
[j
++] = decoded_options
[i
++];
143 /* NOTE: We start at 1 now, not 0. */
146 new_decoded_options
[j
] = decoded_options
[i
];
148 if (!saw_libc
&& (args
[i
] & WITHLIBC
))
151 saw_libc
= &decoded_options
[i
];
154 if ((args
[i
] & SKIPOPT
) != 0)
161 /* If we didn't see a -o option, add one. This is because we need
162 the driver to pass all .rs files to rust1. Without a -o option the
163 driver will invoke rust1 separately for each input file. FIXME:
164 This should probably use some other interface to force the driver
165 to set combine_inputs. */
168 generate_option (OPT_o
, "a.out", 1, CL_DRIVER
, &new_decoded_options
[j
]);
173 new_decoded_options
[j
++] = *saw_libc
;
174 if (shared_libgcc
&& !static_link
)
175 generate_option (OPT_shared_libgcc
, NULL
, 1, CL_DRIVER
,
176 &new_decoded_options
[j
++]);
178 *in_decoded_options_count
= j
;
179 *in_decoded_options
= new_decoded_options
;
180 *in_added_libraries
= added_libraries
;
183 /* Called before linking. Returns 0 on success and -1 on failure. */
185 lang_specific_pre_link (void) /* Not used for Rust. */
190 /* Number of extra output files that lang_specific_pre_link may generate. */
191 int lang_specific_extra_outfiles
= 0; /* Not used for Rust. */