From bf36bcbc4a843279aebff26666a5ca802a7b37fb Mon Sep 17 00:00:00 2001 From: Zach Reizner Date: Thu, 6 Jul 2017 17:59:49 -0700 Subject: sys_util: add sock_ctrl_msg module for transmitting messages with FD This CL also includes the gcc build time dependency for building the sock_ctrl_msg.c helper code. TEST=cargo test BUG=chromium:738638 Change-Id: I4adc2360b7fab4ed7d557603aa7bad2e738b69b4 Reviewed-on: https://chromium-review.googlesource.com/562574 Commit-Ready: Zach Reizner Tested-by: Zach Reizner Reviewed-by: Chirantan Ekbote Reviewed-by: Dylan Reid --- sys_util/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sys_util/Cargo.toml') diff --git a/sys_util/Cargo.toml b/sys_util/Cargo.toml index df54b13..bc9e1f9 100644 --- a/sys_util/Cargo.toml +++ b/sys_util/Cargo.toml @@ -2,8 +2,12 @@ name = "sys_util" version = "0.1.0" authors = ["The Chromium OS Authors"] +build = "build.rs" [dependencies] data_model = { path = "../data_model" } libc = "*" -syscall_defines = { path = "../syscall_defines" } \ No newline at end of file +syscall_defines = { path = "../syscall_defines" } + +[build-dependencies] +gcc = "0.3" -- cgit 1.4.1