strlen, strcpy, etc errors when trying to link an object

2015-02-01 Thread irtcupc via Digitalmars-d-learn
Hello, I try to link an object file under win32, the format is ok (omf), i haven't yet started to write the di interface (it exists in a c H file that i'll translate) that a simple compilation try gives me: --- C:\...\myObj.obj(myObj) Error 42: Symbol Undefined strlen C:\...\myObj.obj(myObj

Re: strlen, strcpy, etc errors when trying to link an object

2015-02-01 Thread irtcupc via Digitalmars-d-learn
On Sunday, 1 February 2015 at 18:19:54 UTC, irtcupc wrote: Hello, I try to link an object file under win32, the format is ok (omf), i haven't yet started to write the di interface (it exists in a c H file that i'll translate) that a simple compilation try gives me: --- C:\...\myObj.obj(myObj

Re: strlen, strcpy, etc errors when trying to link an object

2015-02-01 Thread ketmar via Digitalmars-d-learn
On Sun, 01 Feb 2015 18:34:01 +, irtcupc wrote: did you build BeaEngine with dmc? if not, try to rebuild with dmc compiler. signature.asc Description: PGP signature

Re: strlen, strcpy, etc errors when trying to link an object

2015-02-02 Thread irtcupc via Digitalmars-d-learn
On Monday, 2 February 2015 at 05:30:04 UTC, ketmar wrote: On Sun, 01 Feb 2015 18:34:01 +, irtcupc wrote: did you build BeaEngine with dmc? if not, try to rebuild with dmc compiler. It has worked, compiled with dmc, __IBMCPP__ compatibility mode, thx for pointing me out the idea.