And change FileManager::getCanonicalName to use getRealPath.
Details
Details
Diff Detail
Diff Detail
- Repository
- rC Clang
- Build Status
Buildable 18182 Build 18182: arc lint + arc unit
Event Timeline
Comment Actions
Looks good. Please watch the windows buildbots carefully after landing this.
| lib/Basic/FileManager.cpp | ||
|---|---|---|
| 542 | PATH_MAX is not a standard thing and probably not there on windows. I'd just hardcode it to 256. | |
Comment Actions
- s/PATH_MAX/4096/
| lib/Basic/FileManager.cpp | ||
|---|---|---|
| 542 | PATH_MAX on unit is 4096. Let's go with 4096. | |
PATH_MAX is not a standard thing and probably not there on windows. I'd just hardcode it to 256.