Ask Your Question
0

When utilizing the g++ command on the terminal, the Mac OS defaults to employing the clang++ compiler.

asked 2022-01-11 11:00:00 +0000

woof gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-07-29 04:00:00 +0000

qstack gravatar image

However, it is possible to install the GNU compiler collection (GCC) and use g++ with that compiler instead. This can be done by installing GCC using Homebrew or MacPorts, and then specifying the path to the GCC version of g++ when compiling your code.

For example, if you have installed GCC using Homebrew, you can use the following command to compile your code with g++:

/usr/local/bin/g++ yourfile.cpp

If you want to make sure that you are using the GCC version of g++ by default, you can create an alias in your shell profile:

alias g++="/usr/local/bin/g++"

This will make the system use the GCC version of g++ whenever you type g++ in the terminal.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-01-11 11:00:00 +0000

Seen: 11 times

Last updated: Jul 29 '21