-
Notifications
You must be signed in to change notification settings - Fork 519
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
Warning: Redefining fopen64 with std::fopen #576
Comments
@jakirkham This is expected, since you are using 64-bit systems. Some 32-bit systems define fopen64() and fopen() separately, whereas in 64-bit systems, fopen64() is an alias of fopen(). |
@hcho3 why then print the warning? If this is standard practice, no need to print an extra warning Lines 10 to 16 in c8f7f9c
If not, why do it? |
Ok. I suggest to remove the warning: #598 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Am seeing the following warning when building xgboost on Linux and macOS. It seems to be pointing to dmlc-core. So am raising here. Appears there is an issue where
fopen64
is being redefined withstd::fopen
. Build logs linked below as well in case they are of interest.ref: https://dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=84089
The text was updated successfully, but these errors were encountered: