- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
command
/opt/icc/cc/11.2.012b/bin/icc -big-endian -pe-dir-rule=./pe /opt/icc/cc/11.2.012b/bin/icc/cc/11.2.012b/include/__intel_prolog.h /opt/icc/cc/11.2.012b/bin/icc/cc/11.2.012b/include/__intel_epilog.h a.c
icc: command line error: 1 arguments not expected for '-pe-dir-rule', expecting 3testcase is attached.
the small testcase can not work, but in compiling environment, it work, but for me there is other problem
Thanks
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I see that you are using our bi-endian compiler.
The -pe-dir-rule option takes three arguments -- a regular expression, a prolog file, and a epilog file. You did not specify a regular expressionand you did not put thearguments inquotes.
Something like this works:
icc -big-endian -pe-dir-rule="/usr/intel /usr/intel/prolog.h /usr/intel/epilog.h" a.c
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I see that you are using our bi-endian compiler.
The -pe-dir-rule option takes three arguments -- a regular expression, a prolog file, and a epilog file. You did not specify a regular expressionand you did not put thearguments inquotes.
Something like this works:
icc -big-endian -pe-dir-rule="/usr/intel /usr/intel/prolog.h /usr/intel/epilog.h" a.c
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks Judy. I've also routed this post link to Xinan, my Intel Peer who handles the Bi-endian compiler as an FYI.
-regards,
Kittur
-regards,
Kittur
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks
BTW, regular expression of -pe-dir-rule doesn't have not the same effect with -Iheader_file_path.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page