Tagged Questions

xlc or xlC is the command to invoke IBM XL C or C++ compiler. It is used on IBMs proprietary platforms like Blue Gene, AIX, z/OS, and z/VM

learn more… | top users | synonyms

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 ...
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 : ...
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
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
110 views

How to use -bloadmap or -bnoquiet option?

I am getting warnings about duplicate symbols during my C compile on AIX 6.1 and it says: ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. I have looked up on Google ...
0
votes
2answers
87 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
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
301 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
1answer
164 views

linking a static c++ library built by gcc with a program compiled by xlC?

I have a third party static library that was built on AIX with gcc. When I try to link to that library using the xlC AIX compiler I get all sorts of unresolved symbols. I believe it is due to the ...
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
549 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 ...
0
votes
3answers
409 views

Initialization between types “const int** const” and “int**” is not allowed, why?

Using V1.8 z/OS XL C compiler, with warnings jacked-up using INFO(ALL), I get the following warning on line 4 of the code below: WARNING CCN3196 Initialization between types "const int** const" and ...
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 ...