First of all, I would just like to thank you greatly for all your work in making this great editor...
Now to my problem.
5,OT,$BLINK.EXE /SECTION:.DATA,s /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:"$L" /OUT:"$5",3,4
in the Link section of project options outputs this
C:Masm32BinLINK.EXE /SECTION:.DATA "s /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:"C:Masm32Lib" /OUT:"$5"" "get handle.obj" "get handle.res"
which gives me this error
LINK : fatal error LNK1181: cannot open input file "s /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:C:Masm32Lib /OUT:$5.obj"
The Error occours because I added this switch ---> /SECTION:.DATA,s
It seems that you interpret the comma to be a space+double quote, I actually need a literal comma here for the proper /SECTION syntax
Thank you
:)
Now to my problem.
5,OT,$BLINK.EXE /SECTION:.DATA,s /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:"$L" /OUT:"$5",3,4
in the Link section of project options outputs this
C:Masm32BinLINK.EXE /SECTION:.DATA "s /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:"C:Masm32Lib" /OUT:"$5"" "get handle.obj" "get handle.res"
which gives me this error
LINK : fatal error LNK1181: cannot open input file "s /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:C:Masm32Lib /OUT:$5.obj"
The Error occours because I added this switch ---> /SECTION:.DATA,s
It seems that you interpret the comma to be a space+double quote, I actually need a literal comma here for the proper /SECTION syntax
Thank you
:)
Hi
RadASM's command line parser uses comma as a field separator.
A workaround is to use | instead of comma.
5,OT,$BLINK.EXE /SECTION:.DATA|s /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:"$L" /OUT:"$5",3,4
KetilO
RadASM's command line parser uses comma as a field separator.
A workaround is to use | instead of comma.
5,OT,$BLINK.EXE /SECTION:.DATA|s /SUBSYSTEM:WINDOWS /RELEASE /VERSION:4.0 /LIBPATH:"$L" /OUT:"$5",3,4
KetilO
I knew there must be something like this in there.
I have read the manual (donkey's work)
Is there any other recource that I can consult for information like this, so I can RTFM rather than ask you basic questions like this here???
Thanks again:alright:
I have read the manual (donkey's work)
Is there any other recource that I can consult for information like this, so I can RTFM rather than ask you basic questions like this here???
Thanks again:alright: