Justin Mattock <justinmatt...@gmail.com> writes: > I seem to be stuck with this error(below) when building nss > > ../dist/public/dbm pkix_pl_ldaptemplates.c > {standard input}: Assembler messages: > {standard input}:954: Error: junk at end of line, first unrecognized > character is `6' > {standard input}:954: Error: junk at end of line, first unrecognized > character is `"' > make[4]: *** [Linux2.6_x86_64_glibc_PTH_64_OPT.OBJ/pkix_pl_ldaptemplates.o] > Error 1 > > is this a problem with gcc or is this a problem with nss?
This question is not appropriate for the mailing list g...@gcc.gnu.org. It would be appropriate for gcc-h...@gcc.gnu.org. Please take any followups to gcc-help. Thanks. This error message means that there is some discrepancy between what the compiler generates and what the assembler accepts. It may be possible to fix this by simply updating your assembler. Otherwise, you will need to identify the specific failing command, run it with the --save-temps option, and look at line 954 of the generated .s file. Send that to gcc-help if you need more help. Ian