Bug 4080 – Patch for building dynamic libraries on Mac OS X

Status
NEW
Severity
normal
Priority
P3
Component
druntime
Product
D
Version
D2
Platform
x86
OS
Mac OS X
Creation time
2010-04-11T05:48:49Z
Last change time
2024-12-07T13:30:53Z
Assigned to
Sean Kelly
Creator
Jacob Carlborg
Moved to GitHub: dmd#17222 →

Attachments

IDFilenameSummaryContent-TypeSize
606dmd.patchAdds the "-dylib" flagtext/plain4088
607druntime.patchAdds support for building dynamic librariestext/plain15032
608phobos2.patchAdds support for building dynamic librariestext/plain871

Comments

Comment #0 by doob — 2010-04-11T05:48:49Z
Created attachment 606 Adds the "-dylib" flag These three patches adds support for building dynamic libraries on Mac OS X. The patch for DMD adds the "-dylib" flag to the compiler. Building with this flag enabled will produce a dynamic library. The patch for druntime makes the necessary changes to build dynamic libraries. The D main function is now weakly linked, all of the module constructors of all the loaded images (executables, dynamic libraries) are run. The C main function is slightly modified to use the rt_init and rt_term functions. Two C functions are also added the will initialize and terminate the runtime if no D main function is available, i.e. a D plugin linked with a C application. The patch for phobos is just some modifications to the make file. To build druntime and phobos as dynamic libraries add "dynamic", i.e. "make -f osx.mak dynamic". A note about dynamic libraries on Mac OS X: Every dynamic library has an install name on Mac OS X which is the path to where an executable should look for the library when loading it. The build script sets this to "@rpath/<libname>.dylib", where <libname> is "libdruntime" or "libphobos2". @rpath is a relative path which the user can set when compiling an executable like this: "dmd -L-rpath -L/path/to/library/". When the executable then is loaded it will search for the library in "/path/to/library/<libname>.dylib". -rpath can be set multiple times. The user can also change the install name with the tool "install_name_tool" without needing to recompile. A change to the dmd.conf file is also needed. With this change the user doesn't have to set the @rpath every time when compiling. "libdruntime" must also be linked. DFLAGS=-I%@P%/../src/phobos -I%@P%/../src/druntime/import -L-L%@P%/../lib -L-rpath -L%@P%/../lib -L%@P%/../lib/libdruntime.dylib
Comment #1 by doob — 2010-04-11T05:49:32Z
Created attachment 607 Adds support for building dynamic libraries
Comment #2 by doob — 2010-04-11T05:50:13Z
Created attachment 608 Adds support for building dynamic libraries
Comment #3 by doob — 2010-04-11T05:52:34Z
BTW the make files probably needs some cleaning up, make files are not my strong side.
Comment #4 by bugzilla — 2010-06-24T14:29:00Z
Comment #5 by bugzilla — 2010-08-26T14:21:48Z
http://www.dsource.org/projects/dmd/changeset/372 I changed the location of the new files to be more consistent with druntime's existing conventions: Adding src\core\sys\osx\mach\dyld.d Adding src\core\sys\osx\mach\getsect.d Adding src\core\sys\osx\mach\loader.d Adding src\rt\dylib_fixes.c Adding src\rt\image.d
Comment #6 by robert.schadek — 2024-12-07T13:30:53Z
THIS ISSUE HAS BEEN MOVED TO GITHUB https://github.com/dlang/dmd/issues/17222 DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB