mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
31 lines
1.3 KiB
Plaintext
31 lines
1.3 KiB
Plaintext
Index: SConscript
|
|
--- SConscript.orig
|
|
+++ SConscript
|
|
@@ -745,7 +745,7 @@ Export('bootcode_o')
|
|
if (env['multi_isa']):
|
|
lib_static_objs, lib_shared_objs = build_multiisa_lib_objects()
|
|
# STATIC library build.
|
|
- arm_compute_a = build_library('arm_compute-static', arm_compute_env, lib_static_objs, static=True)
|
|
+ arm_compute_a = build_library('arm_compute', arm_compute_env, lib_static_objs, static=True)
|
|
|
|
if(env['os'] == 'linux' and not env['opencl']):
|
|
# -static suffix in static libraries is deprecated, and will be removed in COMPMID-8696.
|
|
@@ -760,7 +760,7 @@ else:
|
|
elif 'sve' in env['arch']:
|
|
lib_files += lib_files_sve
|
|
|
|
- arm_compute_a = build_library('arm_compute-static', arm_compute_env, lib_files, static=True)
|
|
+ arm_compute_a = build_library('arm_compute', arm_compute_env, lib_files, static=True)
|
|
|
|
Export('arm_compute_a')
|
|
|
|
@@ -784,7 +784,7 @@ arm_compute_graph_env = arm_compute_env.Clone()
|
|
# Build graph libraries
|
|
arm_compute_graph_env.Append(CXXFLAGS = ['-Wno-redundant-move', '-Wno-pessimizing-move'])
|
|
|
|
-arm_compute_graph_a = build_library('arm_compute_graph-static', arm_compute_graph_env, graph_files, static=True)
|
|
+arm_compute_graph_a = build_library('arm_compute_graph', arm_compute_graph_env, graph_files, static=True)
|
|
Export('arm_compute_graph_a')
|
|
|
|
if env['os'] != 'bare_metal' and not env['standalone']:
|