Tagged Questions

3
votes
1answer
81 views

obj.template operator() construct does not work with xlC 11.1

The following piece of C++ code: template <typename T> static void execute(T& obj) { obj.template operator()<int>(); } when compiled with IBM's xlC 11.1 results in the error ...
2
votes
1answer
53 views

gprof issue with output

The question is: Why is my gprof output only displaying "Index by function name" ? I have compiled my application with the support of this tutorial : ...
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
1answer
340 views

Static declarations are not considered for a function call if the function is not qualified

"painting/qpathclipper.cpp", line 1643.30: 1540-0274 (S) The name lookup for "fuzzyCompare" did not find a declaration. "painting/qpathclipper.cpp", line 1643.30: 1540-1292 (I) Static declarations ...
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
1answer
85 views

Loop optimization by the IBM xlC compiler with Altivec

I was just playing around with the Altivec extension on a power6 cluster we have. I noticed that when I compiled the code below without any optimizations, my speedup was 4 as I was expecting. ...
0
votes
3answers
108 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
94 views

z/OS socket creation - compilation issues

I am trying to create a client application relying on raw sockets. I refereed http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/EDCLB1A0/3.940.2?SHELF=&DT=20090607203246&CASE= for ...
0
votes
1answer
302 views

IBM XL C/C++ Compiler: check compiler mode using preprocessor directive

I am trying to compile a sample c++ file test.cpp using IBM xlC compiler on AIX system. The file should be compiled in both 32-bit and 64-bit modes. I am using following commands to compile them in ...
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
1answer
531 views

How do I include IBM XLC template *.c files in the make dependency file?

For the XLC compiler, templated code goes in a *.c file. Then when your program is compiled that uses the template functions, the compiler finds the template definisions in the .c file and ...