mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
new tool to test gcc4/5 ABI
This commit is contained in:
parent
9a47744fc0
commit
ba6e274efa
5 changed files with 243 additions and 0 deletions
22
tools/gccabicheck/wscript
Normal file
22
tools/gccabicheck/wscript
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#!/usr/bin/env python
|
||||
from waflib.extras import autowaf as autowaf
|
||||
from waflib import Options
|
||||
import os
|
||||
|
||||
# Mandatory variables
|
||||
top = '.'
|
||||
out = 'build'
|
||||
|
||||
def options(opt):
|
||||
autowaf.set_options(opt)
|
||||
|
||||
def configure(conf):
|
||||
conf.load('compiler_c')
|
||||
autowaf.configure(conf)
|
||||
|
||||
def build(bld):
|
||||
obj = bld(features = 'c cprogram')
|
||||
obj.source = [ 'abicheck.c' ]
|
||||
obj.target = 'gcc-glibmm-abi-check'
|
||||
obj.name = 'gcc-glibmm-abi-check'
|
||||
obj.lib = 'dl'
|
||||
Loading…
Add table
Add a link
Reference in a new issue