GNU Make hosts its code at git://git.sv.gnu.org/make.git.

You can learn more at the project's web page.

Launchpad imports the master branch and you can create branches from it.

You can get a copy of the development focus branch using the command:
bzr branch lp://qastaging/make

See all merge proposals.

GNU Make has 1 active branch owned by 1 team. There were 0 commits in the last month.

Bazaar branches

Name Status Last Modified Last Commit
lp://qastaging/make
Series: trunk
1 Development 2025-08-27 05:30:14 UTC
3173. [SV 67046] Don't modify the hash tabl...

Author: Paul Smith
Revision Date: 2025-08-27 05:30:14 UTC

[SV 67046] Don't modify the hash table when inside hash_map*()

It's illegal for the user-supplied function to modify the hash table
while executing hash_map*() methods. snap_file() may add elements
due to EXTRA_PREREQS, so we can't call it via hash_map_args().

Diagnosis and test by Shim Manning <shimmanning@gmail.com>
Possible fix by Dmitry Goncharov <dgoncharov@users.sf.net>

* src/hash.h (hash_table): Remember when we're in hash_map*().
* src/hash.c (hash_init): Initialize the in-map value to false.
(hash_map): Set the in-map value to true when walking the map.
(hash_map_arg): Ditto.
(hash_insert_at): Assert we're not in hash_map*()
(hash_free_items): Ditto.
(hash_delete_items): Ditto.
(hash_free): Ditto.
* src/file.c (snap_deps): Use hash_dump() to create a copy of the
hash and walk that to call snap_file(), so we can add more files.
(snap_file): Since we're calling it directly, don't use void* args.

11 of 1 result
You can't create new branches for GNU Make.