| Senior Member with 431 posts. | | Join Date: Jun 2005 Location: Kansas City area Experience: advanced but learning | |
Drawmack, that is one heck of a make file.
From the error messages, looking at the make file, I'd say your problems are here:
LDDLFLAGS = -dll -nologo -nodefaultlib -debug -opt:ref icf -libpath:"C:\Perl\lib\CORE" -machine:x86
LDFLAGS = -nologo -nodefaultlib -debug -opt:ref icf -libpath:"C:\Perl\lib\CORE" -machine:x86
The "-opt:ref icf" doesn't look kosher. In your first post, I was thinking that you were MAKEing "opt". Now I see you're not.
Obviously, the linker simply does not like the -libpath and -opt options, or the syntax is incorrect for those options. You need to consult the documentation for your linker. |