1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-07 07:02:53 +03:00

add freebsd support

Summary: Add some basic support for FreeBSD to getdeps.

Reviewed By: ahornby

Differential Revision: D33989129

fbshipit-source-id: 42ff5f160b7e19c12196bb2e52a726f7815487bd
This commit is contained in:
Chad Austin
2022-02-08 18:06:55 -08:00
committed by Facebook GitHub Bot
parent 6926f90e05
commit 5cd35796ba
10 changed files with 76 additions and 9 deletions

View File

@@ -773,7 +773,10 @@ class FixupDeps(ProjectCmdBase):
dep_munger = create_dyn_dep_munger(
loader.build_opts, install_dirs, args.strip
)
dep_munger.process_deps(args.destdir, args.final_install_prefix)
if dep_munger is None:
print(f"dynamic dependency fixups not supported on {sys.platform}")
else:
dep_munger.process_deps(args.destdir, args.final_install_prefix)
def setup_project_cmd_parser(self, parser):
parser.add_argument("destdir", help="Where to copy the fixed up executables")