From a7cbe96ceab1d86ed2e9bcc762102fa9169edb22 Mon Sep 17 00:00:00 2001 From: Robbe Derks Date: Fri, 7 Jul 2023 16:05:10 +0200 Subject: [PATCH] Remove acados symlink (#28824) seems to build fine without? old-commit-hash: f086656e80c60628eb60f74e9f777e6959d11538 --- SConstruct | 5 ----- 1 file changed, 5 deletions(-) diff --git a/SConstruct b/SConstruct index 6de1d7cce0..55ddc5c499 100644 --- a/SConstruct +++ b/SConstruct @@ -72,11 +72,6 @@ if platform.system() == "Darwin": if arch == "aarch64" and AGNOS: arch = "larch64" -# create symlink to lib dir of current arch, so the ACADOS_SOURCE_DIR would have valid structure -acados_lib_path = Dir(f"#third_party/acados/lib") -if not Dir(f"#third_party/acados/lib").exists(): - os.symlink(Dir(f"#third_party/acados/{arch}/lib").abspath, acados_lib_path.abspath) - lenv = { "PATH": os.environ['PATH'], "LD_LIBRARY_PATH": [Dir(f"#third_party/acados/{arch}/lib").abspath],