这是indexloc提供的服务,不要输入任何密码
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: termux/termux-elf-cleaner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: termux/termux-elf-cleaner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: threads
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 10 files changed
  • 1 contributor

Commits on Aug 1, 2022

  1. Run elf-cleaner in multiple threads if multiple input are given

    When we want to loop over many files we can then save quite some time
    by running on parallel inside termux-elf-cleaner, instead of outside
    in the shell.
    
    Basically, changing from:
    
      parallel termux-elf-cleaner foo bar baz foo bar baz ...
    
    and instead handle the parallelisation inside termux-elf-cleaner so we
    can run just:
    
      termux-elf-cleaner foo bar baz foo bar baz ...
    
    decreases the amount of overhead and saves time compared to running
    termux-elf-cleaner in a bash for loop, or with the help of tools like
    parallel.
    Grimler91 committed Aug 1, 2022
    Configuration menu
    Copy the full SHA
    9e332c0 View commit details
    Browse the repository at this point in the history
  2. tests: add run termux-elf-cleaner on 100 files

    Check so no errors are raised.
    Grimler91 committed Aug 1, 2022
    Configuration menu
    Copy the full SHA
    09bcc08 View commit details
    Browse the repository at this point in the history
Loading