We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 724338f commit 1b253fbCopy full SHA for 1b253fb
src/seccompiler/build.rs
@@ -0,0 +1,9 @@
1
+// Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+// SPDX-License-Identifier: Apache-2.0
3
+
4
+fn main() {
5
+ println!("cargo::rustc-env=LIBSECCOMP_LINK_TYPE=static");
6
+ println!("cargo::rustc-env=LIBSECCOMP_LIB_PATH=/usr/local/lib");
7
+ println!("cargo::rustc-link-search=/usr/local/lib");
8
+ println!("cargo::rustc-link-lib=seccomp");
9
+}
0 commit comments