pp->f = popen(cmdline, "r");
if (!pp->f)
- yasm__fatal("Failed to execute preprocessor");
+ yasm__fatal( N_("Failed to execute preprocessor") );
yasm_xfree(cmdline);
}
if (pp->f) {
if (pclose(pp->f) != 0)
- yasm__fatal("Preprocessor exited with failure");
+ yasm__fatal( N_("Preprocessor exited with failure") );
}
yasm_xfree(pp->filename);
if (strcmp(in_filename, "-") != 0) {
f = fopen(in_filename, "r");
if (!f)
- yasm__fatal("Could not open input file");
+ yasm__fatal( N_("Could not open input file") );
}
else
f = stdin;
if (strcmp(in_filename, "-") != 0) {
f = fopen(in_filename, "r");
if (!f)
- yasm__fatal("Could not open input file");
+ yasm__fatal( N_("Could not open input file") );
}
else
f = stdin;
if (strcmp(in_filename, "-") != 0) {
f = fopen(in_filename, "r");
if (!f)
- yasm__fatal("Could not open input file");
+ yasm__fatal( N_("Could not open input file") );
}
else
f = stdin;
frontends/yasm/yasm-options.c
frontends/yasm/yasm.c
-#lc3bid.c
libyasm/bc-align.c
libyasm/bc-data.c
libyasm/bc-incbin.c
libyasm/intnum.c
libyasm/section.c
libyasm/symrec.c
+libyasm/valparam.c
libyasm/value.c
libyasm/xmalloc.c
-#modules/arch/lc3b/lc3barch.c
-#modules/arch/lc3b/lc3bbc.c
+modules/arch/lc3b/lc3barch.c
+modules/arch/lc3b/lc3bbc.c
modules/arch/x86/x86arch.c
modules/arch/x86/x86bc.c
modules/arch/x86/x86expr.c
modules/parsers/gas/gas-token.re
modules/parsers/nasm/nasm-parse.c
modules/parsers/nasm/nasm-token.re
+modules/preprocs/cpp/cpp-preproc.c
+modules/preprocs/yapp/yapp-preproc.c
+modules/preprocs/nasm/nasm-preproc.c
modules/preprocs/nasm/nasm-pp.c
modules/preprocs/raw/raw-preproc.c