Renee D'Netto
Renee D'Netto
@tianxingyzxq, could you run `env | grep BOOST` and see if there's any output?
``` CC=arm-none-eabi-gcc ``` This overrides the setting of `CC=cc` via environment variable. If you use the `develop` branch, you'll find this has been fixed by adding a symlink for `arm-none-eabi-gcc`....
Can you reproduce this with the [Clementine](https://github.com/clementine-player/Clementine) project? It's possible that there's something odd about your project that waits for input from stdin, etc.
Ahhh, that explains it. During the configure phase, we invoke the underlying compiler (`CC`/`CXX`) since cmake will compile some test files to determine the compiler's behaviour/functionality. Since `ccache` was also...
Running `config_gen.py` in that repository works for me. Are you using the latest stable version? Also, are you relying on any environment variables to enable cmake to determine the path...
> Is it just config_gen.py --verbose . from the parent directory of the project? Yep, that command is executed from the same directory containing `CMakeLists.txt` > I updated the project...
I suspect the problem is that you haven't configured cmake correctly to handle out-of-tree builds. See if you can compile it by doing this: ``` mkdir /tmp/build cd /tmp/build cmake...
According to jmcantrell/vim-fatrat#1, this is caused by an incompatibility with Vim 7.1 (
Thanks for the PR. Would you mind explaining what the use case for having multiple `.pro` files in a given directory is?
OK, makes sense. I'd prefer to have avoided something that depends on interactive input (see #48), but this is a fairly niche case and I can't think of a better...