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
I was quite surprised that --target rollup only adds -link-library for std and base only if no other --link-library option is specified. As soon as I add custom library linking via --link-library the std and base disappear and I have to add them manually. Is it a bug or intended behavior?
The text was updated successfully, but these errors were encountered:
Yeah, setting link-library options when specifying certain --target options is a bit of a hack, I'm not sure we can make the combination of flags additive. We probably need to explicitly check if both options are provided, and if so, ensure that all of the implied link libraries for the given --target are still present (adding them if not).
I was quite surprised that
--target rollup
only adds-link-library
forstd
andbase
only if no other--link-library
option is specified. As soon as I add custom library linking via--link-library
thestd
andbase
disappear and I have to add them manually. Is it a bug or intended behavior?The text was updated successfully, but these errors were encountered: