$ uname -a
|
Linux spaceman 3.19.5-100.fc20.x86_64 #1 SMP Mon Apr 20 19:51:16 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
|
$ git status
|
On branch 10.1
|
Your branch is up-to-date with 'origin/10.1'.
|
|
nothing to commit, working directory clean
|
$ cmake . -DCMAKE_C_COMPILER=`which gcc` -DCMAKE_CXX_COMPILER=`which g++` -DCMAKE_BUILD_TYPE=Debug -DWITHOUT_MROONGA_STORAGE_ENGINE=ON -DWITHOUT_TOKUDB=ON -DWITHOUT_OQGRAPH=ON
|
$ make -j9
|
make[2]: *** [include/mysqld_error.h.tmp] Error 1
|
make[1]: *** [extra/CMakeFiles/GenError.dir/all] Error 2
|
make[1]: *** Waiting for unfinished jobs....
|
troff: fatal error: can't find macro file m
|
troff: fatal error: can't find macro file m
|
[ 25%] [ 25%] Built target t
|
Built target ps
|
[ 25%] Built target resolveip
|
Linking CXX executable mysql_tzinfo_to_sql
|
[ 25%] Built target mysql_tzinfo_to_sql
|
make: *** [all] Error 2
|
$ vi extra/comp_err.c
|
(edit as per github pr #68)
|
$ make -j 9
|
...
|
..
|
$ cd mysql-test/
|
$ ./mtr
|
bash: ./mtr: /usr/bin/perl^M: bad interpreter: No such file or directory
|
$ perl ./mtr
|
..
|
2015-06-01 13:01:18 140233271527616 [Note] WSREP: wsrep_load(): loading provider library 'none'
|
CREATE DEFINER=root@localhost TRIGGERwedish_ci||nnection||||uery: '
|
2015-06-01 13:01:19 140233271527616 [ERROR] Aborting
|
$ dos2unix ../mysql-test/include/mtr_check.sql
|
$ perl ./mtr
|
..
|
..
|
2015-06-01 13:02:38 140230174668992 [Note] WSREP: wsrep_load(): loading provider library 'none'
|
) ENGINE=MyISAM|' at line 1ons ( your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '||
|
2015-06-01 13:02:40 140230174668992 [ERROR] Aborting
|
$ dos2unix ../mysql-test/include/mtr_warnings.sql
|
dos2unix: converting file ../mysql-test/include/mtr_warnings.sql to Unix format ...
|
$ perl ./mtr
|
...
|
..
|
plugins.pam [ skipped ] No pam setup for mtr
|
federated.federated_partition 'X,innodb_plugin' [ pass ] 492
|
federated.federated_transactions 'X,innodb_plugin' [ pass ] 660
|
federated.federated_innodb 'X,innodb_plugin' [ pass ] 380
|
federated.federated_innodb 'innodb_plugin,old' [ pass ] 602
|
federated.federated_partition 'X,xtradb' [ pass ] 349
|
...
|
|
$ git stash
|
$ git checkout 5.5
|
$ cmake . -DCMAKE_C_COMPILER=`which gcc` -DCMAKE_CXX_COMPILER=`which g++` -DCMAKE_BUILD_TYPE=Debug -DWITHOUT_MROONGA_STORAGE_ENGINE=ON -DWITHOUT_TOKUDB=ON -DWITHOUT_OQGRAPH=ON-- The C compiler identification is GNU 4.8.3
|
-- The CXX compiler identification is GNU 4.8.3
|
-- Check for working C compiler: /usr/lib64/ccache/gcc
|
-- Check for working C compiler: /usr/lib64/ccache/gcc -- works
|
-- Detecting C compiler ABI info
|
-- Detecting C compiler ABI info - done
|
-- Check for working CXX compiler: /usr/lib64/ccache/g++
|
-- Check for working CXX compiler: /usr/lib64/ccache/g++ -- works
|
-- Detecting CXX compiler ABI info
|
-- Detecting CXX compiler ABI info - done
|
CMake Error at CMakeLists.txt:16 (INSTALL_MYSQL_TEST):
|
Unknown CMake command "INSTALL_MYSQL_TEST".
|
|
|
CMake Warning (dev) in CMakeLists.txt:
|
No cmake_minimum_required command is present. A line of code such as
|
|
cmake_minimum_required(VERSION 2.8)
|
|
should be added at the top of the file. The version specified may be lower
|
if you wish to support older CMake versions for this project. For more
|
information run "cmake --help-policy CMP0000".
|
This warning is for project developers. Use -Wno-dev to suppress it.
|
|
-- Configuring incomplete, errors occurred!
|
See also "/home/dan/software_projects/mariadb-server/mysql-test/CMakeFiles/CMakeOutput.log".
|
|
workaround:
fix:
next error:
...