Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

-E or - x required when input is from standard input

Tags:

ios

xcode6

armv7

I have created a Static Library for one of my project and now I am adding this library to my another project. Everything seems to work well but when I build I get the following error

[Error] -E or - x required when input is from standard input

I am attaching a snapshot of error log also.

Error Log

like image 782
ash_win Avatar asked Mar 17 '23 23:03

ash_win


1 Answers

You've got a solitary - in your clang command line, which signifies that the source file is to be read via stdin. This probably crept in via a project setting - go through your settings and check for a stray -.

like image 190
Paul R Avatar answered Apr 01 '23 19:04

Paul R