Tagged Questions
4
votes
1answer
1k views
AIX 5.3 (ld-xlc) equivalent option Linux (ld-gcc) -rpath
My compiler:xlc version 10.1
Environment: AIX5.3
Linker: ld
When i work on Linux , with gcc (4.4.1) i use the following option
-Wl,-rpath
(-Wl for the linker options) it adds a directory to the ...
2
votes
4answers
333 views
When is a>a true?
Right, I think I really am living a dream. I have the following piece of code which I compile and run on an AIX machine:
AIX 3 5
PowerPC_POWER5 processor type
IBM XL C/C++ for AIX, V10.1
Version: ...
1
vote
1answer
2k views
How can you find out the version of xlC installed on AIX box
So this should be quite simple but just want to see if I got it right.
I am trying to find out what version of xlC compiler is installed on AIX box.
I tried xlC -v/xlc --version which is not ...
1
vote
5answers
118 views
Problem with Initializing Consts
This code, when compiled in xlC 8.0 (on AIX 5.3), produces the wrong result.
It should print 12345, but instead prints 804399880.
Removing the const in front of result makes the code work correctly.
...
1
vote
2answers
264 views
Availability of #include <map> with xlC on AIX 4.3
Is there a version of xlC/VACPP available for AIX 4.3, which does not choke when given following source:
#include <map>
int main(void)
{
return 0;
}
If yes, is it still available anywhere?
...
0
votes
2answers
88 views
GNU make with xlc compiler
Hoping for a bit of insight here. I have source code for one of our projects, with no documentation on how to compile, and all people who wrote it having left :) We have an issue in it and lucky moi ...
0
votes
3answers
109 views
Different object pointer value and its this pointer
basically, I wrote a class with another class array atributte inside, I mean:
class MyClass
{
unsigned long long x_;
bool y_;
public:
MyClass & operator=(const MyClass & mc)
{
...
0
votes
1answer
81 views
CRTDBG_MAP_ALLOC equivalent on AIX's xlC
I am trying to detect if I have a memory leak on my AIX xlC compiled object. When using visual studio if I included CRTDBG_MAP_ALLOC it would give me some printout information regarding memory leaks. ...
0
votes
0answers
251 views
Problem compiling boost.asio example on AIX with IBM Visual Age C++ 7.0
This is definitely going to be one of my more arcane questions, but I hope someone has had to deal with this pain.
I am porting some software to IBM AIX 5.3, using IBM VisualAge C++ 7.0 compiler. The ...
0
votes
2answers
552 views
AIX xlC cross-compilation/linkage for C++ not finding C symbols
I am attempting to cross-compile on AIX with the xlc/xlC compilers.
The code compiles successfully when it uses the default settings on another machine. The code actually successfully compiles with ...