[Nasm-bugs] [Bug 3392567] [Feature request] Listing preprocessor define results in list file

noreply-nasm at gorcunov.org noreply-nasm at gorcunov.org
Sat Aug 10 05:41:22 PDT 2019


https://bugzilla.nasm.us/show_bug.cgi?id=3392567

--- Comment #8 from H. Peter Anvin <hpa at zytor.com> ---
I added new options:

    -Lf    to ignore .nolist
    -Lb    to show the output of builtin macro packages

Adding a %pragma is a bit cantankerous, as the list options really need to be
initialized before the beginning of the pass. Therefore such a %pragma would
only take effect on the *next* pass. This is normally okay, of course, as it
should be seen in the stabilization pass and thus be in effect on the final
pass, but it could have funny effects with the -Lp option.

More importantly, something like this will NOT work:

%pragma list options +f

        Stuff

%pragma list options -f

        More stuff

Only the last setting will have any effect, and will have effect from the very
beginning of the next pass.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are on the CC list for the bug.


More information about the Nasm-bugs mailing list