Hunt
Hunt

Reputation: 99

Is it possible to run applications compiled using IBM XLC/C++ compiler on Docker?

I have a native application which is compiled on IBM AIX 7.1 Operating System using XL C/C++ compiler. Is it possible to run the application using docker which is installed on Linux machine? I tried to find the base image for IBM AIX OS, but was unsuccessful.

Upvotes: 0

Views: 332

Answers (1)

fork2execve
fork2execve

Reputation: 1650

No. You could use qemu to emulate a powerpc processor but there is no full AIX emulation to run usermode programs. It would also run rather more slowly.

Upvotes: 1

Related Questions