[Issue 10440] New: shared library on osx: worked in 2.062, fails in 2.063 / 2.063.2
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Jun 21 20:05:18 PDT 2013
http://d.puremagic.com/issues/show_bug.cgi?id=10440
Summary: shared library on osx: worked in 2.062, fails in 2.063
/ 2.063.2
Product: D
Version: D2
Platform: All
OS/Version: Mac OS X
Status: NEW
Severity: regression
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: thelastmammoth at gmail.com
--- Comment #0 from thelastmammoth at gmail.com 2013-06-21 20:05:17 PDT ---
--foo.d
module foo;
extern(C) void foo1(){}
--main.d
module main;
pragma(lib,"foo");
extern(C) void foo1();
void main(){foo1;}
dmd -oflibfoo.dylib -shared foo.d;
dmd -L-L. main.d
./main
--output:
2.062:OK
2.063(and 2.063.2):NG
gdb ./main
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: 13 at address: 0x0000000000000000
0x00000001000184fc in sections_osx_onAddImage ()
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list