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
Currently , the contents of any CFLAGS or CXXFLAGS environment variables are added to the build cmd prior to include_directories that had been added using fn include:
This can result in conflicts if the specified includes need to come prior to the CFLAGS includes.
We've worked around this by manually prepending includes to CFLAGS (see aws/s2n-tls#4338), but it would be preferable for this to be configurable in cc.
Thanks!
The text was updated successfully, but these errors were encountered:
Currently , the contents of any
CFLAGS
orCXXFLAGS
environment variables are added to the build cmd prior toinclude_directories
that had been added usingfn include
:cc-rs/src/lib.rs
Lines 1766 to 1770 in be62f4a
This can result in conflicts if the specified includes need to come prior to the
CFLAGS
includes.We've worked around this by manually prepending includes to
CFLAGS
(see aws/s2n-tls#4338), but it would be preferable for this to be configurable incc
.Thanks!
The text was updated successfully, but these errors were encountered: