You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2020. It is now read-only.
Passing $(CC) as env variable is not effective when Makefile overrides $(CC).
If $(CC) is passed as parameter instead, make will override the setting from Makefile, which would allow YCM-Generator to be used in a greater number of projects.
So, make resolves variables according to the following priority order:
Parameters passed to make
Variables set inside Makefile itself
Environment variables
The same goes for all other variables that YCM-Generator uses, not just $(CC).
The text was updated successfully, but these errors were encountered:
Passing
$(CC)
as env variable is not effective whenMakefile
overrides$(CC)
.If
$(CC)
is passed as parameter instead,make
will override the setting fromMakefile
, which would allowYCM-Generator
to be used in a greater number of projects.So,
make
resolves variables according to the following priority order:make
Makefile
itselfThe same goes for all other variables that
YCM-Generator
uses, not just$(CC)
.The text was updated successfully, but these errors were encountered: