aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@google.com>2020-03-04 20:43:26 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-03-04 20:43:26 +0000
commitb3401d71b93405d9573ae3408630001558a6223a (patch)
treefe592a06756f865e060d34d6ddf914bfdb4ffc77
parent375b1d8af175e4ddf1f3073be7127a2871fb63ec (diff)
parent2e20b3451096f3925f8bfa04c71a3f78dfb2fd4f (diff)
downloadf2fs-tools-b3401d71b93405d9573ae3408630001558a6223a.tar.gz
Merge "Android.bp: compile without fortify"
-rw-r--r--Android.bp5
1 files changed, 4 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 7c8340d..0fa3305 100644
--- a/Android.bp
+++ b/Android.bp
@@ -199,7 +199,10 @@ cc_binary {
cc_binary {
name: "check_f2fs",
host_supported: false,
- cflags: ["--static"],
+ cflags: [
+ "--static",
+ "-U_FORTIFY_SOURCE",
+ ],
srcs: ["tools/check_f2fs.c"],
product_specific: true,
}