Absolutely! So first install brew and then do a "brew install gcc". Then if you're building with make you'd just have to do something like
```bash export CXX=/path/to/g++ export CC=/path/to/gcc ``` With cmake you could add this before generating your build files: "-DCMAKE_CXX_COMPILER=/path/to/g++ -DCMAKE_C_COMPILER=/path/to/gcc" [ Full content available at: https://github.com/apache/incubator-mxnet/issues/12568 ] This message was relayed via gitbox.apache.org for [email protected]
