You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the meson function generates directories in /tmp/ with a uuid using uuid.New().String(). Meaning that it is not possible to make reproducible builds if they require meson.
A better way to do this would be to use the hash of some set values (like sources+name for example) for the temporary directory, to ensure that the values is not randomly generated.
The text was updated successfully, but these errors were encountered:
Currently, the
meson
function generates directories in/tmp/
with a uuid usinguuid.New().String()
. Meaning that it is not possible to make reproducible builds if they requiremeson
.A better way to do this would be to use the hash of some set values (like sources+name for example) for the temporary directory, to ensure that the values is not randomly generated.
The text was updated successfully, but these errors were encountered: