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
Skc: option to canonize paths in generated ll (#801)
The checked in bootstrap `.ll.gz` files contain absolute paths that only
make sense for the person building them.
Paths are found in `!DIFile` directives (both absolute CWD `directory`
and absolute file path `filename`) and other positions (e.g. those found
in messages for unreachableMethodCall calls).
This PR:
- makes `!DIFile`'s `filename` relative to the `directory`, _all the
time_, from what I could find, this seems legit
- makes all file names relative to `CWD`, **if** `--canonize-paths` is
given
Hence, to compile `skc` with canonized paths, use `skargo build --skcopt
--canonize-paths`
0 commit comments