mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
preproc_init: Just clean include path
It is more natural to keep include path valid during the whole lifetime. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
e358851526
commit
feabd742a3
12
asm/nasm.c
12
asm/nasm.c
@ -328,15 +328,18 @@ static void define_macros(void)
|
||||
* Command-line specified preprocessor directives (-p, -d, -u,
|
||||
* --pragma, --before) are processed after this function.
|
||||
*/
|
||||
static void preproc_init(StrList *list)
|
||||
static void preproc_init(StrList **ipath)
|
||||
{
|
||||
struct strlist_entry *l;
|
||||
|
||||
preproc->init();
|
||||
define_macros();
|
||||
|
||||
list_for_each(l, list->head)
|
||||
list_for_each(l, (*ipath)->head)
|
||||
preproc->include_path(l->str);
|
||||
|
||||
strlist_free(*ipath);
|
||||
*ipath = strlist_allocate();
|
||||
}
|
||||
|
||||
static void emit_dependencies(StrList *list)
|
||||
@ -500,9 +503,7 @@ int main(int argc, char **argv)
|
||||
}
|
||||
}
|
||||
|
||||
preproc_init(include_path);
|
||||
strlist_free(include_path);
|
||||
include_path = NULL;
|
||||
preproc_init(&include_path);
|
||||
|
||||
parse_cmdline(argc, argv, 2);
|
||||
if (terminate_after_phase) {
|
||||
@ -633,6 +634,7 @@ int main(int argc, char **argv)
|
||||
eval_cleanup();
|
||||
stdscan_cleanup();
|
||||
src_free();
|
||||
strlist_free(include_path);
|
||||
|
||||
return terminate_after_phase;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user