summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/unix/separate_debug_info.prf
blob: 460ad63e22b0408e95e5b4de27eb74f046468153 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
have_target:!static:if(darwin|!isEmpty(QMAKE_OBJCOPY)) {
    darwin {
        debug_info_copy_bin = $$QMAKE_DSYMUTIL
        debug_info_strip_bin = $$QMAKE_STRIP
        debug_info_suffix = dSYM
        debug_info_out = --flat -o
        debug_info_strip = -S
    } else {
        debug_info_copy_bin = $$QMAKE_OBJCOPY
        debug_info_strip_bin = $$QMAKE_OBJCOPY
        qnx {
            debug_info_suffix = sym
            debug_info_keep = --keep-file-symbols
            debug_info_strip = --strip-debug -R.ident
        } else {
            debug_info_suffix = debug
            debug_info_keep = --only-keep-debug
            debug_info_strip = --strip-debug
        }
    }
    load(resolve_target)
    debug_info_target = $$QMAKE_RESOLVED_TARGET

    darwin {
        !isEmpty(QMAKE_RESOLVED_BUNDLE) {
            debug_info_target = $$QMAKE_RESOLVED_BUNDLE
            CONFIG += any_bundle
        }

        debug_info_target_dir = $${debug_info_target}.$$debug_info_suffix/Contents/Resources/DWARF
        !isEmpty(QMAKE_RESOLVED_BUNDLE): \
            QMAKE_TARGET_DEBUG_INFO = $$debug_info_target_dir/$$TARGET
        else: \
            QMAKE_TARGET_DEBUG_INFO = $$debug_info_target_dir/$$section(QMAKE_RESOLVED_TARGET, /, -1, -1)

        if(any_bundle:!build_pass)|if(!any_bundle:if(build_pass|isEmpty(BUILDS))) {
            equals(TEMPLATE, lib):lib_bundle:!isEmpty(QMAKE_FRAMEWORK_BUNDLE_NAME): \
                BUNDLEIDENTIFIER = $$replace(QMAKE_FRAMEWORK_BUNDLE_NAME, \\.framework$, )
            else: equals(TEMPLATE, app):app_bundle:!isEmpty(QMAKE_APPLICATION_BUNDLE_NAME): \
                BUNDLEIDENTIFIER = $$replace(QMAKE_APPLICATION_BUNDLE_NAME, \\.app$, )
            else: \
                BUNDLEIDENTIFIER = $${TARGET}

            !isEmpty(QMAKE_TARGET_BUNDLE_PREFIX): \
                BUNDLEIDENTIFIER = $$replace(QMAKE_TARGET_BUNDLE_PREFIX, \\.$, ).$${BUNDLEIDENTIFIER}
            else: \
                BUNDLEIDENTIFIER = com.yourcompany.$${BUNDLEIDENTIFIER}

            BUNDLEIDENTIFIER ~= s,_,-,

            debug_info_plist.input = $$QMAKESPEC/Info.plist.dSYM.in
            debug_info_plist.output = $${debug_info_target}.$$debug_info_suffix/Contents/Info.plist
            QMAKE_SUBSTITUTES += debug_info_plist
        }
    } else {
        QMAKE_TARGET_DEBUG_INFO = $${QMAKE_RESOLVED_TARGET}.$$debug_info_suffix
    }

    shell_target = $$shell_quote($$relative_path($$QMAKE_RESOLVED_TARGET, $$OUT_PWD))
    shell_target_debug_info = $$shell_quote($$relative_path($$QMAKE_TARGET_DEBUG_INFO, $$OUT_PWD))
    copy_debug_info = $$debug_info_copy_bin $$debug_info_keep $$shell_target $$debug_info_out $$shell_target_debug_info
    strip_debug_info = $$debug_info_strip_bin $$debug_info_strip $$shell_target

    !isEmpty(QMAKE_POST_LINK):QMAKE_POST_LINK = $$escape_expand(\\n\\t)$$QMAKE_POST_LINK
    darwin {
        mkdir_debug_info = $$QMAKE_MKDIR $$shell_quote($$debug_info_target_dir)
        QMAKE_POST_LINK = $$mkdir_debug_info && $$copy_debug_info && $$strip_debug_info $$QMAKE_POST_LINK
    } else {
        link_debug_info = $$QMAKE_OBJCOPY --add-gnu-debuglink=$$shell_target_debug_info $$shell_target
        chmod_debug_info = chmod -x $$shell_target_debug_info
        QMAKE_POST_LINK = $$copy_debug_info && $$strip_debug_info && $$link_debug_info && $$chmod_debug_info $$QMAKE_POST_LINK
    }
    silent:QMAKE_POST_LINK = @echo creating $@.$$debug_info_suffix && $$QMAKE_POST_LINK

    target.targets += $$QMAKE_TARGET_DEBUG_INFO
    QMAKE_DISTCLEAN += $$QMAKE_TARGET_DEBUG_INFO
}