We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Eugene recently noticed that pxCore ignores environment compilation flags. Here is a quote from the makefile:
CXXFLAGS=-Wall -Wextra -g $(SEARCH) -DRT_PLATFORM_LINUX -D$(PX_PLATFORM) -DENABLE_RT_NODE CXXFLAGS2=-fPIC -Wall -Wextra -g $(SEARCH) -DRT_PLATFORM_LINUX -D$(PX_PLATFORM) -DENABLE_RT_NODE -DRUNINMAIN ifdef PXVERSION CXXFLAGS=$(CXXFLAGS2) -DPX_SCENE_VERSION=$(PXVERSION) else CXXFLAGS=$(CXXFLAGS2) endif
CXXFLAGS2=-fPIC -Wall -Wextra -g $(SEARCH) -DRT_PLATFORM_LINUX -D$(PX_PLATFORM) -DENABLE_RT_NODE -DRUNINMAIN
ifdef PXVERSION CXXFLAGS=$(CXXFLAGS2) -DPX_SCENE_VERSION=$(PXVERSION) else CXXFLAGS=$(CXXFLAGS2) endif
CXXFLAGS variable is being overwritten by predefined value and system variable is not used.
The text was updated successfully, but these errors were encountered:
mfiess
No branches or pull requests
Eugene recently noticed that pxCore ignores environment compilation flags.
Here is a quote from the makefile:
CXXFLAGS variable is being overwritten by predefined value and system variable is not used.
The text was updated successfully, but these errors were encountered: