vy32
vy32

Reputation: 29635

what is g++-mp-4.3?

MacPorts installs something called g++-mp-4.3?

Does the "mp" mean MacPorts, or is it something else? I can't find any documentation anywhere...

Thanks!

Upvotes: 1

Views: 1576

Answers (2)

Oleksandr Kravchuk
Oleksandr Kravchuk

Reputation: 6319

Yes, 'mp' means MacPorts. g++-mp-4.3 is C++ compiler from GCC for MacPorts.

Upvotes: 3

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798436

It's GNU C++ as provided by MacPorts. The full form for GNU executables is <name>[-<variant>][-<version>]. The variant and version can be omitted to indicate that it is the primary executable with that name for the system.

Upvotes: 3

Related Questions