From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v3, 3/3] add support for building the server
Date: Tue, 21 Jan 2014 23:27:17 +0100 [thread overview]
Message-ID: <20140121222717.GE3455@free.fr> (raw)
In-Reply-To: <1390313407-3495-3-git-send-email-kuyurix@gmail.com>
Marcelo, All,
Subject should have been something like:
mysql: add option to build the server
On 2014-01-21 14:10 +0000, Marcelo Guti?rrez spake thusly:
> Add support for building MySQL
>
> Signed-off-by: Marcelo Guti?rrez <kuyurix@gmail.com>
Still a few comments...
[--SNIP--]
> diff --git a/package/mysql/Config.in b/package/mysql/Config.in
> index 229e050..56e7e6e 100644
> --- a/package/mysql/Config.in
> +++ b/package/mysql/Config.in
> @@ -12,3 +12,10 @@ config BR2_PACKAGE_MYSQL
> comment "MySQL needs a toolchain w/ C++, threads"
> depends on BR2_USE_MMU
> depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
> +
> +if BR2_PACKAGE_MYSQL
> +
> +config BR2_PACKAGE_MYSQL_SERVER
> + bool "MySQL server"
Leading tab, not spaces.
Maybe add a bit of help here:
help
Install the MySQL server on the target.
[--SNIP--]
> diff --git a/package/mysql/mysql.mk b/package/mysql/mysql.mk
> index aaf6ba9..a418eb2 100644
> --- a/package/mysql/mysql.mk
> +++ b/package/mysql/mysql.mk
> @@ -14,6 +14,15 @@ MYSQL_AUTORECONF = YES
> MYSQL_LICENSE = GPLv2
> MYSQL_LICENSE_FILES = README COPYING
>
> +ifeq ($(BR2_PACKAGE_MYSQL_SERVER),y)
> +MYSQL_DEPENDENCIES += host-mysql
> +HOST_MYSQL_DEPENDENCIES =
> +
> +HOST_MYSQL_CONF_OPT = \
> + --with-embedded-server
> +endif
Maybe this ifeq-block can be moved in the other one, below?
I noticed that you enable the server with: --with-embedded-server
but you disable it with: --without-server
There is a mismatch between the --with and the --without options. Is
that normal?
> MYSQL_CONF_ENV = \
> ac_cv_sys_restartable_syscalls=yes \
> ac_cv_path_PS=/bin/ps \
> @@ -25,7 +34,6 @@ MYSQL_CONF_ENV = \
>
> MYSQL_CONF_OPT = \
> --without-ndb-binlog \
> - --without-server \
> --without-docs \
> --without-man \
> --without-libedit \
> @@ -34,6 +42,44 @@ MYSQL_CONF_OPT = \
> --enable-thread-safe-client \
> $(ENABLE_DEBUG)
>
> +ifeq ($(BR2_PACKAGE_MYSQL_SERVER),y)
> + MYSQL_CONF_OPT += \
No indentation on that first line.
> + --disable-dependency-tracking \
> + --with-atomic-ops=up \
> + --with-embedded-server \
> + --without-query-cache \
> + --without-plugin-partition \
> + --without-plugin-daemon_example \
> + --without-plugin-ftexample \
> + --without-plugin-archive \
> + --without-plugin-blackhole \
> + --without-plugin-example \
> + --without-plugin-federated \
> + --without-plugin-ibmdb2i \
> + --without-plugin-innobase \
> + --without-plugin-innodb_plugin \
> + --without-plugin-ndbcluster
We usually indent with one tab in continuation lines.
> +define HOST_MYSQL_BUILD_CMDS
> + $(MAKE) -C $(@D)/include my_config.h
> + $(MAKE) -C $(@D)/mysys libmysys.a
> + $(MAKE) -C $(@D)/strings libmystrings.a
> + $(MAKE) -C $(@D)/vio libvio.a
> + $(MAKE) -C $(@D)/dbug libdbug.a
> + $(MAKE) -C $(@D)/regex libregex.a
> + $(MAKE) -C $(@D)/sql gen_lex_hash
These should be indented with a tab, not spaces.
> +endef
Hmmm... When I suggested we only build the required stuff, I did not
expect this would amount to so many single-line calls.
I wonder if it is worth keeping this. So, is it much faster to only
build the above, compared to building everything? If so, we just keep
the above lines, otherwise, we should just keep the default host build
commands.
> +define HOST_MYSQL_INSTALL_CMDS
> + $(INSTALL) -m 0755 $(@D)/sql/gen_lex_hash $(HOST_DIR)/usr/bin/
One tab, not spaces.
> +endef
> +
> +else
> +MYSQL_CONF_OPT += \
> + --without-server
> +endif
> +
> +
> define MYSQL_REMOVE_TEST_PROGS
> rm -rf $(TARGET_DIR)/usr/mysql-test $(TARGET_DIR)/usr/sql-bench
> endef
It looks like you somehow lost the final line in your refactoring:
$(eval $(host-autotools-package))
Really, thank you for staying on-board through these iterations!
We're getting pretty close on that last patch! :-)
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
next prev parent reply other threads:[~2014-01-21 22:27 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-21 14:10 [Buildroot] [PATCH 2/3] rename the patches so they have a number Marcelo Gutiérrez
2014-01-21 14:10 ` [Buildroot] [PATCH v3, 3/3] add support for building the server Marcelo Gutiérrez
2014-01-21 22:27 ` Yann E. MORIN [this message]
2014-01-21 23:46 ` Marcelo Gutierrez
2014-01-22 18:17 ` Yann E. MORIN
2014-01-21 22:08 ` [Buildroot] [PATCH 2/3] rename the patches so they have a number Yann E. MORIN
2014-01-21 22:41 ` Peter Korsgaard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140121222717.GE3455@free.fr \
--to=yann.morin.1998@free.fr \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox