- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: error #2266: "input_iterator_tag with aCC 6.15
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 12:37 AM
06-06-2008 12:37 AM
Re: error #2266: "input_iterator_tag with aCC 6.15
What does ospace do? I'm familiar with their C++ Standard Library. Is this what you are using it for? (The above -Ds indicates this maybe true.) If so, you'll have problems and need to compile with +nostl.
>Could you please let me know why I am getting the above error?
You need to start all over. Why are you using ospace when HP has it's own C++ Standard Library? If you don't use HP's, you are on your own and must use +nostl and then figure out what's missing.
I don't know why you are getting these unsats since they should all be defined in libstd_v2.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 01:54 AM
06-06-2008 01:54 AM
Re: error #2266: "input_iterator_tag with aCC 6.15
I will try with the above flag and let you know the results.
Thanks,
Neel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2008 01:51 AM
06-10-2008 01:51 AM
Re: error #2266: "input_iterator_tag with aCC 6.15
Correct me If I am wrong?
If I build with -AA flag, then the build would be ANSI build, and if i use -AP flag then build be non-ansi?
Regards,
Neel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2008 02:40 AM
06-10-2008 02:40 AM
Re: error #2266: "input_iterator_tag with aCC 6.15
Yes. But if you are using +nostl, it might not matter so much.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2008 11:02 PM
06-10-2008 11:02 PM
Re: error #2266: "input_iterator_tag with aCC 6.15
(Sorry, for going out of track)
Could you please let me know, how can i compile the following statement on PA-RISC
using the following conf:
aCC: HP ANSI C++ B3910B A.03.57
HP-UX B.11.11 U 9000/800 109092009 unlimited-user license
The statement is:
const o_double MAX = (std::numeric_limits
Currently I can compile the above statement using -AA, but i need to compile with the default on PA-RISC which is -AP, Could you please let me know how can modify the above statement in order to get compile with -AP.
I have gone thru the following FAQ's.
Can I use this in any way:
11. Can I write code that works for both?
Yes. Only with conditional compilation. And/or by using the following
namespace std:: construct:
namespace std {} using namespace std;
You can put this construct anywhere, as many times as you like. Or once at the beginning - as long it is before you reference any symbol that doesn't have the needed std::. And you can use it with -AP too.
Regards,
Neel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2008 01:04 AM - last edited on 04-04-2017 02:51 AM by Parvez_Admin
06-11-2008 01:04 AM - last edited on 04-04-2017 02:51 AM by Parvez_Admin
SolutionYou sked it in your other thread. I'll answer it there:
[broken link removed on <4/4/2017> by Mod]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2008 01:20 AM
06-11-2008 01:20 AM
Re: error #2266: "input_iterator_tag with aCC 6.15
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2008 02:48 AM
06-18-2008 02:48 AM
Re: error #2266: "input_iterator_tag with aCC 6.15
>>I don't know why you are getting these unsats since they should all be defined in libstd_v2
Yes, If I explicitly provide -lstd_v2 while linking executable it does resolve the unstats.
Thanks for your hints/suggestions.
Kind regards,
Neel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2008 12:43 AM
06-20-2008 12:43 AM
Re: error #2266: "input_iterator_tag with aCC 6.15
- « Previous
- Next »