summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-05-15 23:03:31 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-05-16 01:53:42 +0200
commitb6e36089e5bd43baeb41e8299ad8970b1cd32c88 (patch)
treee903821c9df51f0dcb14256b90bb716a6de35c17 /buildtools
parent18e2e86c083fa1a24056e691a755bc45a35547d1 (diff)
downloadsamba-b6e36089e5bd43baeb41e8299ad8970b1cd32c88.tar.gz
samba-b6e36089e5bd43baeb41e8299ad8970b1cd32c88.tar.bz2
samba-b6e36089e5bd43baeb41e8299ad8970b1cd32c88.zip
build: Add explicit mention of --abi-check-disable to ABI checker
This information has always been in the linked wiki page, but put it in the build to unblock developers using platforms with slightly different GDB output. We can also assist this by improving the string normalisiation in the ABI checker when example errors are provided. It is better to build with the waf build and the full testsuite than to avoid the waf build or not to use the developer options simply to skip the ABI checker. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed May 16 01:53:42 CEST 2012 on sn-devel-104
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_abi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_abi.py b/buildtools/wafsamba/samba_abi.py
index c51e08c290..2966d7c1bf 100644
--- a/buildtools/wafsamba/samba_abi.py
+++ b/buildtools/wafsamba/samba_abi.py
@@ -109,7 +109,7 @@ def abi_check_task(self):
got_error = True
if got_error:
- raise Utils.WafError('ABI for %s has changed - please fix library version then build with --abi-update\nSee http://wiki.samba.org/index.php/Waf#ABI_Checking for more information' % libname)
+ raise Utils.WafError('ABI for %s has changed - please fix library version then build with --abi-update\nSee http://wiki.samba.org/index.php/Waf#ABI_Checking for more information\nIf you have not changed any ABI, and your platform always gives this error, please configure with --abi-check-disable to skip this check' % libname)
t = Task.task_type_from_func('abi_check', abi_check_task, color='BLUE', ext_in='.bin')