scudo-sys 0.2.2

C/FFI Bindings for the Scudo Hardened Allocator
Documentation
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
extern crate cc;

use std::fs::read_dir;
use std::path::Path;

const SCUDO_RUST_WRAPPER: &str = "src/scudo_rust_wrapper.cpp";

fn main() {
    println!("cargo:rerun-if-changed={}", SCUDO_RUST_WRAPPER);
    let scudo_dir = Path::new("scudo-standalone");

    // Get all .cpp files besides the wrappers.
    let scudo_cpp_files = read_dir(scudo_dir).unwrap().filter_map(|e| {
        let entry = e.unwrap();
        let path = entry.path();
        let filename = path.file_name().unwrap().to_str().unwrap();
        if filename.ends_with("cpp") && !filename.starts_with("wrapper") {
            Some(path)
        } else {
            None
        }
    });

    cc::Build::new()
        .files(scudo_cpp_files)
        .file(SCUDO_RUST_WRAPPER)
        .include(scudo_dir)
        .include(scudo_dir.join("include"))
        .cpp(true)
        .pic(true) // Position Independent Code.
        .shared_flag(true)
        .compile("scudo");

    // Opt level is inferred from Cargo and environment variables.

    // TODO(cneo): -pthread -msse -std=c++17? Those flags are present at:
    //             https://llvm.org/docs/ScudoHardenedAllocator.html#library
}