Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable silent build rules by default #1021

Merged
merged 2 commits into from
Sep 20, 2024
Merged

Commits on Sep 19, 2024

  1. Enable silent build rules by default

    Enable silent build rules by default.
    
    You can still use verbose build rules by using any of the following
    methods:
    
      * run `configure` with the `--disable-silent-rules` argument
      * run `make` with the `V=1` argument
    
    This hides the compiler command line which makes debugging users'
    problems more difficult. To compensate for that, this prints the
    build flags separately, but a lot less frequently:
    
    For each part of the build (`libgphoto2_port.la`, iolibs,
    `libgphoto2.la`, camlibs), if something of that part has been
    rebuilt, prints the build flags (_CPPFLAGS, _CFLAGS, _LIBADD,
    _LDFLAGS) once.
    
    Always prints the environment variables CPPFLAGS CFLAGS LDADD
    LIBADD LDFLAGS once, whether they are the defaults the configure
    script sets or given on the `make` command line.
    
    Not all make recipes have been converted to be completely silent,
    but the majority (especially the Automake standard recipes) are
    now silent.
    ndim committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    155c445 View commit details
    Browse the repository at this point in the history
  2. ci: Start using silent rules

    ndim committed Sep 19, 2024
    Configuration menu
    Copy the full SHA
    c9e2eb5 View commit details
    Browse the repository at this point in the history