-
Notifications
You must be signed in to change notification settings - Fork 448
New issue
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
Rebuild after modifying environment variables that the C compiler reads #906
Comments
Also |
Hmm, while #1103 does improve this situation, it does not really address the underlying issue of the C compiler itself using these variables. What I mean is that it only works because we're reading e.g. What I really want is something like:
To run sometime before we invoke the compiler (I guess it could perhaps be slightly more granular than this, if we knew that the compiler doesn't read some of these on certain targets / with certain build flags, but you get the idea). |
Cargo has the ability to specify that a build script depends on specific environment variables using
cargo:rerun-if-env-changed=NAME
, but no such mechanism exist for C compilers (that I know of).This means that when you update an environment variable that your C compiler reads, you have to run
cargo clean
before the change takes effect. It would be nice ifcc
could prevent this by outputting a list of known variables that the C compiler it is about to invoke may read.A list of the major ones I've found so far in Clang/LLVM (see also their limited docs about it):
SDKROOT
on Apple targetsVCINSTALLDIR
/VCToolsInstallDir
on WindowsINCLUDE
/CPATH
/C_INCLUDE_PATH
/C_PLUS_INCLUDE_PATH
/OBJC_INCLUDE_PATH
/OBJCPLUS_INCLUDE_PATH
MACOSX_DEPLOYMENT_TARGET
/IPHONEOS_DEPLOYMENT_TARGET
/TVOS_DEPLOYMENT_TARGET
/WATCHOS_DEPLOYMENT_TARGET
/XROS_DEPLOYMENT_TARGET
on Apple targetsNote that some of these may need to be handled by rustc/cargo itself.
Clang/LLVM read a bunch more, but they're mostly for debugging, or for stuff like setting up the terminal width, so I don't think those are applicable.
Additionally, C compilers usually rely on a few fundamental ones like
PATH
,PWD
andPATHEXT
on Windows that I would honestly expectcargo
to handle, though I get why it may be difficult to do right.The text was updated successfully, but these errors were encountered: