Closed
Description
Currently, it appears that
- rustc disables the standard framework search path by default,
- the only way to specify an alternative framework search path is via '-C link_args="-F "' to rustc, or by using the oft derided link_args crate attribute.
This makes linking against frameworks via cargo incredibly difficult, since cargo only allows setting the "-l" and "-L" compiler flags. It would be great if rustc modified both the dylib search path and the framework search path when a "-L" option is passed to rustc on OSX.