I have an extremely long command line given to ar (android ar exactly) by bjam, and ar just corrupts a file path and complains that file does not exist.
Is there a way to make ar allocate a bigger command line buffer ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not sure about the Android version but many
arimplementations (and indeed many other commands) allow you to put all your arguments into a file (sayxyz.opt) and then use something likear @xyz.optto do the grunt work.That works because the limitation tends to be not so much on the program itself but often on the shell constructing the argument list. By placing the arguments into a file, you can effectively get around that limitation.