This file is indexed.

/usr/share/codeblocks/compilers/compiler_dmd.xml is in codeblocks-common 13.12-3.

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
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0"?>
<!DOCTYPE CodeBlocks_compiler>
<CodeBlocks_compiler name="Digital Mars D Compiler"
                     id="dmd"
                     weight="84">
    <Path type="master">
        <Search envVar="PATH"
                for="C"/>
        <if platform="windows">
            <Fallback path="C:\dmd"/>
        </if>
        <else>
            <Search path="/usr/local/bin"
                    for="C"/>
            <Fallback path="/usr"/>
        </else>
    </Path>
    <Path type="include">
        <if platform="windows">
            <Add><master/>\src\phobos</Add>
        </if>
        <else>
            <Add><master/>/lib/phobos</Add>
        </else>
    </Path>
    <Path type="lib">
        <Add><master/><separator/>lib</Add>
    </Path>
    <if platform="windows">
        <Add lib="phobos2.lib"/>
        <Path type="extra">
            <Add>C:\dm\bin</Add>
        </Path>
    </if>
    <else>
        <Add lib="pthread"/>
        <Add lib="m"/>
        <Add lib="phobos2"/>
    </else>
</CodeBlocks_compiler>