You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
repo_build_dir=os.path.join(build_dir, be, "build")
@@ -2142,7 +2141,7 @@ def backend_build(
2142
2141
cmake_script.mkdir(repo_build_dir)
2143
2142
cmake_script.cwd(repo_build_dir)
2144
2143
cmake_script.cmake(
2145
-
backend_cmake_args(images, be, repo_install_dir, library_paths)
2144
+
backend_cmake_args(images, be, repo_install_dir)
2146
2145
)
2147
2146
cmake_script.makeinstall()
2148
2147
@@ -2542,15 +2541,6 @@ def enable_all(default):
2542
2541
default="/tmp",
2543
2542
help="Temporary directory used for building inside docker.",
2544
2543
)
2545
-
parser.add_argument(
2546
-
"--library-paths",
2547
-
action="append",
2548
-
metavar=("<backend>","<library_path>"),
2549
-
nargs=2,
2550
-
required=False,
2551
-
default=[],
2552
-
help="Specify library paths for given backend in build.",
2553
-
)
2554
2544
parser.add_argument(
2555
2545
"--build-type",
2556
2546
required=False,
@@ -2675,6 +2665,16 @@ def enable_all(default):
2675
2665
default=[],
2676
2666
help=f'Select <org> for specified <{element}>, to use the fork of the corresponding repository from <org> instead of the default --github-organization value.',
2677
2667
)
2668
+
if'lib'inproperties:
2669
+
group.add_argument(
2670
+
f"--{element}-library-path",
2671
+
action="append",
2672
+
metavar=(f"<{element}>","<library_path>"),
2673
+
nargs=2,
2674
+
required=False,
2675
+
default=[],
2676
+
help=f'Specify library paths for specified <{element}> in build.',
0 commit comments