🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Change to test_feature gnuc makefile

Started by
1 comment, last by dkrusu 8 years, 11 months ago

Would you mind making the following change to the test_feature gnuc makefile:


CXX = g++

to


CXX ?= g++

This allows you to override the compiler used, you already have it this way for the libraries makefile.

Thanks

Advertisement

Sure, I can do this.

Are you normally compiling the test_feature project? Why is that?

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

I don't compile it that often, only when I'm working on a patch such as the get/setter one. I've changed the makefile a few times by hand, and every time I mean to ask for it to be changed.

This topic is closed to new replies.

Advertisement