Adding CFLAGS=-I/usr/local/include, hopefully temporarily, because of libintl issue
This commit is contained in:
parent
fe79e798b1
commit
5b36080933
1 changed files with 4 additions and 0 deletions
|
@ -565,18 +565,22 @@ class RunTestGDBIndexBuild (BuildAndTestGDBFactory):
|
||||||
|
|
||||||
class RunTestGDBPlainBSD_c64t64 (RunTestGDBPlain_c64t64):
|
class RunTestGDBPlainBSD_c64t64 (RunTestGDBPlain_c64t64):
|
||||||
"""Compiling for 64-bit, testing on 64-bit."""
|
"""Compiling for 64-bit, testing on 64-bit."""
|
||||||
|
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include' ]
|
||||||
make_command = 'gmake'
|
make_command = 'gmake'
|
||||||
|
|
||||||
class RunTestGDBNativeGDBServerBSD_c64t64 (RunTestGDBNativeGDBServer_c64t64):
|
class RunTestGDBNativeGDBServerBSD_c64t64 (RunTestGDBNativeGDBServer_c64t64):
|
||||||
"""Compiling on 64-bit, testing native-gdbserver on 64-bit."""
|
"""Compiling on 64-bit, testing native-gdbserver on 64-bit."""
|
||||||
|
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include' ]
|
||||||
make_command = 'gmake'
|
make_command = 'gmake'
|
||||||
|
|
||||||
class RunTestGDBNativeExtendedGDBServerBSD_c64t64 (RunTestGDBNativeExtendedGDBServer_c64t64):
|
class RunTestGDBNativeExtendedGDBServerBSD_c64t64 (RunTestGDBNativeExtendedGDBServer_c64t64):
|
||||||
"""Compiling on 64-bit, testing native-extended-gdbserver on 64-bit."""
|
"""Compiling on 64-bit, testing native-extended-gdbserver on 64-bit."""
|
||||||
|
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include' ]
|
||||||
make_command = 'gmake'
|
make_command = 'gmake'
|
||||||
|
|
||||||
class RunTestGDBIndexBuildBSD (RunTestGDBIndexBuild):
|
class RunTestGDBIndexBuildBSD (RunTestGDBIndexBuild):
|
||||||
"""Testing with the "cc-with-tweaks.sh" passing -i. FIXME: include bitness here."""
|
"""Testing with the "cc-with-tweaks.sh" passing -i. FIXME: include bitness here."""
|
||||||
|
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include' ]
|
||||||
make_command = 'gmake'
|
make_command = 'gmake'
|
||||||
|
|
||||||
# For now, we only support testing the "master" branch.
|
# For now, we only support testing the "master" branch.
|
||||||
|
|
Loading…
Reference in a new issue