~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to .pc/wscript.patch/wscript

  • Committer: Package Import Robot
  • Author(s): Adrian Knoth
  • Date: 2014-02-25 14:13:18 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20140225141318-y760kgxso78rduuf
Tags: 3.5.357~dfsg-1
* Imported Upstream version 3.5.357~dfsg
* Critical bugfix release. All users are recommended to upgrade.
* Details: https://community.ardour.org/node/8015

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
    if opt.gprofile:
178
178
        debug_flags = [ '-pg' ]
179
179
 
180
 
    if opt.backtrace:
181
 
        if platform != 'darwin' and not is_clang:
182
 
            debug_flags = [ '-rdynamic' ]
183
 
 
184
180
    # Autodetect
185
181
    if opt.dist_target == 'auto':
186
182
        if platform == 'darwin':
415
411
        conf.env.append_value('CFLAGS', optimization_flags)
416
412
        conf.env.append_value('CXXFLAGS', optimization_flags)
417
413
 
 
414
    if opt.backtrace:
 
415
        if platform != 'darwin' and not is_clang:
 
416
            linker_flags += [ '-rdynamic' ]
 
417
 
418
418
    conf.env.append_value('CFLAGS', compiler_flags)
419
419
    conf.env.append_value('CFLAGS', c_flags)
420
420
    conf.env.append_value('CXXFLAGS', compiler_flags)