<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/70011>70011</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
After 578a4716f Clang -MD by default produces different dependecies file.
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
kbelochapka
</td>
</tr>
</table>
<pre>
commit 578a4716f549167165a2ec3bac89c86706136d4e
Author: Arthur Eubanks <aeubanks@google.com>
It appears that this commit unintentionally made -canonical-system-headers==true as default.
If anyone needs the old behavior he needs to specify -no-canonical-prefixes option.
Logically it should be visa-versa, if anyone needs the new behavior, let him use -canonical-prefixes option.
This change in the clang default behavior causes some other tools that rely on the older format of the dependencies file to work incorrectly. (for example we have Visual Studio extension software that relies on the dependencies file)
On Windows platform, if your system headers located a network drive or on drive that was created by the SUBST command
you will get a fully resolved real file path in the dependencies file
For example;
Lets assume that you have a network drive H: on which you have system headers.
before the commit a path to a include file in the dependencies file looked like:
```
H:\target\include\sdk_version.h
```
After the commit the include file path looks like that:
````
\\SERVERNAME\shared_folder\target\include\sdk_version.h
```
The situation becomes worse if a combined length of a shared folder on a network server and a include file path on a shared network drive is greater than 260 symbols (MAX_PATH limit on Windows). In this situation you will observe bogus include file paths in the dependencies file.
(this problem probably should be a subject to another ticket)
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJycVV2P2jgX_jXm5giUOBDgggvKzKiV3r676nS7e1ed2CeJF8eObAeaf7-yE4aZTvdmJUQCcc7z4ecco_eqMUQHtvnANg8LHEJr3eFckbaixf6Mi8rK8SBs16kAm-0O19u8rDfrfV5u83KDnERRodjtxa7cZmVelHJNLHtg2fGYirHiCEcX2sHB41ChOXtgxQlpumfrrLG20bQStmPF4_Tm9P0pAPY9ofMQWgwQWuVhZjIYZQKZoKxBrUfoUBIsBRprlEC99KMP1C1bQknOs-KBFQ_BDQToQVKNgw6rGaUGNKM1BIZIRigCqyVU1OJFWQftyxMLvieh6hGWxr4C6x3V6gd5sH0kNBf-n23iUz2CCuBbO6SicFEelxdyHhk_gfoFuqHrC3pcoylAqzoY_BuJP6PCa---Jq9aNA2BMqms0Giam_i7PIGDJw_edgQ2tOQgWKtnyx3pEay5mUIOaus6DGDr9J-knowkIxR5qJWmaNLVujMoI6xzJIIeV8D4rrYO6Ad2vSa4ErR4Ifim_IAansMglQX6Ech4ZQ14W4crOnrhEKvPLN4hMr5_o_w3A38qI-3VQ68xRL6z0aMdHEzBgDkYoK3AQBIQDIVEXDp1IbAuAk73icUVPQhHaXE1JirPf3x4_poCiUZO4KMd4Kq0hoYCINRD3H5H3uoLSXCEenKpx9De9uW9oldqnu62seLDHCwKHtD7oZu5RdRk6M8qPsbmswaurRLtfdlbD1av8SqqbTKebp2GE9lgAeOm6kHSpOHf6IO29kwStDoTK-a6rMzmT_oZibHNKaBrKLDNaS7MNicvz99jd8REt79891iHGNI7w3j7hlkiHFn4RCKZ9Asmt4Jsc2Kb0_Pjl2-PX_5__PwYWbToSH6vU-b_K1G4tSKBV2HA2KVQkbAd-dgknlL7RxmVMtExMk1oY28hTAxgYhD38L63ntyFHKCRP29JEp7Wzq-_jYPy0KQIR_vQAC8z8GNXxXZnfPf5-Nf3349fP4JW0Vb70kiM71fwyUwD-C7lJey2SpSgss3g3zPyt6i8z8ote3yXavfOVpq6dMVKj6_GJoIfqr9JhJREM08qJc4UGN-_jvBCHgq5L_a4oENe7nd5UZQlX7SHapfV5W67QUHrrdjvMedFSfuaSymKalMs1IFnvMgzvs626-2ar_K6rjZiV-c5ZnlOJVtn1KHSK60v3cq6ZqG8H-iwzbI8X2isSPt0lHKepi3jPJ6q7hDXL6uhieedVj74e4WggqbDFOqX8xVOaVgvPz_EYXOb2b2zchDkQaq6Jkcm3By9GwqLwelDG0LvY-T5E-NPjQrtUKUTlj9F4Pmy7J2NljL-lHR4xp-SlH8CAAD__5tPunQ">