diff options
author | DoHyun Pyun <dh79.pyun@samsung.com> | 2017-08-14 09:02:49 +0900 |
---|---|---|
committer | DoHyun Pyun <dh79.pyun@samsung.com> | 2017-08-14 09:03:38 +0900 |
commit | 2d8884e250435bbe68a1ab33b1c32dd22d139260 (patch) | |
tree | 469420859a8f58df992677932b9340bc5382de1e | |
parent | 55aca08cbe73ad443102569e8e5c8b44e2a1cc8d (diff) | |
download | rfkill-2d8884e250435bbe68a1ab33b1c32dd22d139260.tar.gz rfkill-2d8884e250435bbe68a1ab33b1c32dd22d139260.tar.bz2 rfkill-2d8884e250435bbe68a1ab33b1c32dd22d139260.zip |
Add the PIE option for the excutable binaryHEADtizen_5.5.m2_releasetizen_4.0.m2_releasetizen_4.0.IoT.p2_releasetizen_4.0.IoT.p1_releasesubmit/tizen_5.5_wearable_hotfix/20201026.184308submit/tizen_5.5_mobile_hotfix/20201026.185108submit/tizen_5.5/20191031.000008submit/tizen_5.0/20181101.000008submit/tizen_4.0/20170828.100007submit/tizen/20170814.000409accepted/tizen/unified/20170814.060206accepted/tizen/5.5/unified/wearable/hotfix/20201027.104712accepted/tizen/5.5/unified/mobile/hotfix/20201027.072131accepted/tizen/5.5/unified/20191031.013217accepted/tizen/5.0/unified/20181102.030002accepted/tizen/4.0/unified/20170828.221642tizen_5.5_wearable_hotfixtizen_5.5_tvtizen_5.5_mobile_hotfixtizen_5.5tizen_5.0tizen_4.0tizenaccepted/tizen_unifiedaccepted/tizen_5.5_unified_wearable_hotfixaccepted/tizen_5.5_unified_mobile_hotfixaccepted/tizen_5.5_unifiedaccepted/tizen_5.0_unifiedaccepted/tizen_4.0_unified
Change-Id: I735bccb793cbadb7feab327e9da88f029761238e
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -9,7 +9,9 @@ INSTALL ?= install CC ?= "gcc" CFLAGS ?= -O2 -g -CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration +CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -fPIE + +LDFLAGS += -pie OBJS = rfkill.o version.o ALL = rfkill |