search for: library_semantics

Displaying 2 results from an estimated 2 matches for "library_semantics".

2019 Mar 18
2
RFC: ELF Autolinking
...as. It rejects .obj files. > I'd think that's a better approach than allowing linking against .o using autolinking. I can't think of a use case of autolinking against .o, and if you really need it, you can easily create an archive containing a single object file. > > C:\temp\library_semantics>more msvc_foo.cint foo() {return 10;} > > C:\temp\library_semantics>cl msvc_foo.c /c > msvc_foo.c > > C:\temp\library_semantics>more msvc.c > #pragma comment(lib, "msvc_foo.obj")int foo ();int main () {return foo();} > > C:\temp\library_semantics>cl msv...
2019 Mar 14
2
RFC: ELF Autolinking
On Thu, Mar 14, 2019 at 5:58 PM Rui Ueyama <ruiu at google.com> wrote: > On Thu, Mar 14, 2019 at 9:45 AM bd1976 llvm via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> On Thu, Mar 14, 2019 at 3:32 PM Peter Smith <peter.smith at linaro.org> >> wrote: >> >>> Hello, >>> >>> I've put some comments on the proposal