https://github.com/nh2/ar-timestamp-wiper
Wipes time stamps from .a files (like ar -D)
https://github.com/nh2/ar-timestamp-wiper
Last synced: 27 days ago
JSON representation
Wipes time stamps from .a files (like ar -D)
- Host: GitHub
- URL: https://github.com/nh2/ar-timestamp-wiper
- Owner: nh2
- Created: 2013-08-07T00:58:10.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-08-07T01:33:57.000Z (almost 12 years ago)
- Last Synced: 2025-04-21T02:05:24.737Z (about 1 month ago)
- Language: Haskell
- Size: 113 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ar-timestamp-wiper
==================This application takes an archive (`.a`) file as created by the Unix `ar` tool, and sets all time stamps in it to zero.
These time stamps make ar generate different output for same input every time, which is problematic if you want to know if the contents actually changed as compared to the last time you created the archive (e.g. in build tools to avoid unnecessary linking).
Recent versions of GNU binutils and BSD ar af the `-D` flag for deterministic mode that creates the archive with all time stamps set to zero. However, these versions of `ar` are not wide spread yet, and this tool can help with that.