Re: [PATCH v2 1/4][Resend] Leave choosing level of optimalization and linker flags to package maintainer.
From: Marcin Mirosław <hidden>
Date: 2016-09-14 08:40:38
[resend due to: 550 5.7.1 Content-Policy reject msg: Wrong MIME labeling on 8-bit character texts. BF:<H 0.278797>; S932461AbcIMTLh] W dniu 2016-09-13 o 17:33, Coly Li pisze: Hi!
在 16/9/13 下午6:55, Marcin Mirosław 写道:quoted
Currently is adding "-static" to linker flags. This needs compiling a couple of dependent libraries to get static version of it. It is a little problematic, at least on Gentoo. Also static binary isn't needed for typical usage, if somebody need it then it's easy to add "-static" to env variable LDFLAGS and get static binary. Similar to CFLAGS, it's easier to add "-g" to CFLAGS than negating it by using "-g0".Hi Marcin, Do you mean bcache-tools/Makefile ? I can see '-g', but for '-static' I don't see it. I clone the code from https://github.com/g2p/bcache-tools.git, or should I look at other code ?
You should look at branch "dev". Probably I should put this information somewhere but I don't know where. In subject?
Coly
Thanks, Marcin
quoted
Signed-off-by: Marcin Mirosław <redacted> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)diff --git a/Makefile b/Makefile index 9f2773e..e9ca92d 100644 --- a/Makefile +++ b/Makefile@@ -1,8 +1,8 @@ PREFIX=/usr INSTALL=install -CFLAGS+=-std=gnu99 -O2 -Wall -g -D_FILE_OFFSET_BITS=64 -I. -LDFLAGS+=-static +CFLAGS:=-std=gnu99 -O2 -Wall -D_FILE_OFFSET_BITS=64 -I. $(CFLAGS) +LDFLAGS+= PKGCONFIG_LIBS="blkid uuid libnih" CFLAGS+=`pkg-config --cflags ${PKGCONFIG_LIBS}`