diff options
author | unknown <malff/marcsql@weblab.(none)> | 2007-08-22 18:11:01 -0600 |
---|---|---|
committer | unknown <malff/marcsql@weblab.(none)> | 2007-08-22 18:11:01 -0600 |
commit | 33e123ead93b0122a67821e4b16ef70ef2b3d3af (patch) | |
tree | 339ccc103816c4b31e52572fdb8e45aa889bf8c5 /BUILD/SETUP.sh | |
parent | 6f052e87bf1dae1b04417f9508d398970c565b2b (diff) | |
download | mariadb-git-33e123ead93b0122a67821e4b16ef70ef2b3d3af.tar.gz |
Do not use $static_link for GCOV builds,
since this flag was explicitly removed in pushbuild for GCOV builds.
BUILD_CMD => ['sh', '-c', 'perl -i.bak -pe "s/ \\\\\$static_link//" ' .
'BUILD/compile-pentium-gcov; BUILD/compile-pentium-gcov'],
Moving $static_link to SETUP.sh broke this, and is now fixed.
Should this flag be needed on some platforms,
the proper location is compile-<platform>-gcov
Tested the amd64 and pentium64 build fine without it, and can run NDB tests.
BUILD/SETUP.sh:
Removed $static_link from GCOV builds.
Diffstat (limited to 'BUILD/SETUP.sh')
-rwxr-xr-x | BUILD/SETUP.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index a8efaf75db4..532ea4eb0f1 100755 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -155,7 +155,7 @@ gcov_compile_flags="$gcov_compile_flags -DMYSQL_SERVER_SUFFIX=-gcov -DHAVE_gcov" gcov_link_flags="-fprofile-arcs -ftest-coverage" -gcov_configs="--disable-shared $static_link" +gcov_configs="--disable-shared" # gprof |