Strategies for finding binary dependencies
at main 10 lines 259 B view raw
1#!/bin/sh -eu 2 3# © Vlad-Stefan Harbuz <vlad@vlad.website> 4# SPDX-License-Identifier: Apache-2.0 5 6c++ \ 7 -O3 -Wall -shared -std=c++11 -fPIC \ 8 $(python3 -m pybind11 --includes) \ 9 example.cpp \ 10 -o example$(python3 -m pybind11 --extension-suffix)