/usr/share/wixl-0.95/include/gcc.wxi is in wixl 0.95-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <?xml version="1.0" encoding="utf-8"?>
<?require winpthreads.wxi?>
<Include xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="INSTALLDIR">
<Directory Id="dir4920EE8CC0DF53D7912686315C7AFEB4" Name="bin">
<Component Win64="$(var.Win64)" Id="cmp23A396DF6DA34DEDBF531E5264BF86AA" Guid="*">
<!-- gcc 4.8 uses SEH -->
<?if $(var.Win64) = "yes"?>
<File Id="fil246F7D773B308C471E32C8FB3BE85730" KeyPath="yes" Source="$(var.SourceDir)/bin/libgcc_s_seh-1.dll"/>
<?else?>
<File Id="filDC11F2B0D7B6BE3CCA2B5003E81CC8F1" KeyPath="yes" Source="$(var.SourceDir)/bin/libgcc_s_sjlj-1.dll"/>
<?endif?>
</Component>
<Component Win64="$(var.Win64)" Id="cmp94EF633C9D64EF2F94885691030F7EB7" Guid="*">
<File Id="fil78209D8C742B610E236DE62A5F452A14" KeyPath="yes" Source="$(var.SourceDir)/bin/libssp-0.dll"/>
</Component>
</Directory>
</DirectoryRef>
</Fragment>
<Fragment>
<ComponentGroup Id="CG.gcc">
<ComponentGroupRef Id="CG.winpthreads"/>
<ComponentRef Id="cmp23A396DF6DA34DEDBF531E5264BF86AA"/>
<ComponentRef Id="cmp94EF633C9D64EF2F94885691030F7EB7"/>
</ComponentGroup>
</Fragment>
</Include>
|