Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
328 views

How can I find out which library is home to a given object?

I'm programming in FORTRAN and C on an SGI running Irix 6.5, but this should be applicable to all Unix-like systems. How do I find which library I need to link to my program when I get an "unresolved ...
3
votes
3answers
296 views

Where can I find prebuilt Subversion binaries for SGI IRIX?

We have a few SGI Onyx 350 and Orgin 350 systems running IRIX 6.5.x that we would like to install Subversion on. One of them will likely be used as a simple repository server running svnserve. The ...
2
votes
5answers
770 views

Inserting objects into hash table (C++)

This is my first time making a hash table. I'm trying to associate strings (the keys) with pointers to objects (the data) of class Strain. // Simulation.h #include <ext/hash_map> using ...
2
votes
2answers
313 views

How to use sgi hash_table in VS2005?

I wrote a C++ project in VS2005, and used lots of STL container with its plus-in STL. However, I found STL in VS2005 does not have a hash_map in it, I want to use SGI hash_map. How can I change my ...
1
vote
1answer
82 views

SGI STL Rope in g++?

It seems that there is a implementation of rope in my /usr/include/c++/4.5.1/ext/rope (and ropeimpl.h). I compared it with SGI STL and the code seems to be pretty much the same codebase. I'm not ...
1
vote
3answers
2k views

'hash_map' was not declared in this scope with g++ 4.2.1

I am trying to use sgi hash_map. #include <list> #include <iostream> #include <string> #include <map> #include <cstring> #include <tr1/unordered_map> #include ...
0
votes
1answer
13 views

Cannot find LDAP 5.2 dictionary file

We have LDAP 5.2 running so that it checks your password against a dictionary file when you change your password. Even when doing this from the LDAP GUI it responds with an error about the password ...
0
votes
1answer
81 views

Need GUI for my Project which has code written in C++ (GNU) and involves hash_map data structures

I am currently working in a project where i have perform some operations in data structure (hash_map/unordered_map) and display the time taken for performing those operations and in the end i have ...
0
votes
0answers
42 views

how best to detect running on SGI UltraViolet (UV) machine?

What is the best way to detect that a script is running on an SGI UltraViolet shared memory machine? There is a /proc/sgi_uv/ directory I could test for, but I was looking for the definitive flag in ...
0
votes
12answers
7k views

How to use SGI STL hash_map?

I am trying to use the SGI STL implementation I have downloaded from their site. I want to use a hashmap, because I have to store around 5.000.000 records, but it should be good: I need to be able to ...