Arm Community
Site
Search
User
Site
Search
User
Support forums
Arm Development Studio forum
need walk-around for Warning: A1725W: 'armasm inputfile outputfile' form of command-line is deprecated
Jump...
Cancel
Locked
Locked
Replies
2 replies
Subscribers
118 subscribers
Views
2587 views
Users
0 members are here
Options
Share
More actions
Cancel
Related
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion
need walk-around for Warning: A1725W: 'armasm inputfile outputfile' form of command-line is deprecated
frank fang
over 12 years ago
Note: This was originally posted on 5th June 2013 at
http://forums.arm.com
this warning is listed in the armasm warning list:
Warning: A1725W: 'armasm inputfile outputfile' form of command-line is deprecated
but there is no walk-around offered to solve this problem.
now i am trying to compile the boost/thread in ds-5 ,
first , bjam want to use inputfile outputfile form to create the obj file at specified location:
armasm "bin.v2\libs\context\build\gcc-arm\debug\address-model-32\architecture-arm\link-static\threading-multi\asm\make_arm_aapcs_pe_armasm.o" "libs\context\src\asm\make_arm_aapcs_pe_armasm.asm"
here armasm give me the warning A1725W,
and the .o file is not put into bin.v2\libs\context\build\gcc-arm\debug\address-model-32\architecture-arm\link-static\threading-multi\asm\make_arm_aapcs_pe_armasm.o
and the next step , when bjam want to use the make_arm_aapcs_pe_armasm.o , 'no such file'
How can i solve this problem ?
Parents
Martin Weidmann
over 12 years ago
Note: This was originally posted on 5th June 2013 at
http://forums.arm.com
I think it's just complaining that you don't have "-o" before the output file
Try changing from:
armasm output_file.o input_file.asm
To:
armasm -o output_file.o input_file.asm
Cancel
Vote up
0
Vote down
Cancel
Reply
Martin Weidmann
over 12 years ago
Note: This was originally posted on 5th June 2013 at
http://forums.arm.com
I think it's just complaining that you don't have "-o" before the output file
Try changing from:
armasm output_file.o input_file.asm
To:
armasm -o output_file.o input_file.asm
Cancel
Vote up
0
Vote down
Cancel
Children
No data