Skip to content

Commit e109f3a

Browse files
author
Raghuveer Devulapalli
committed
Add cpp to lib name
1 parent 7af6e11 commit e109f3a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ int main() {
1919
cancompilefp16 = cpp.compiles(fp16code, args:'-march=sapphirerapids')
2020

2121
subdir('lib')
22-
libsimdsort = shared_library('x86simdsort',
22+
libsimdsort = shared_library('x86simdsortcpp',
2323
'lib/x86simdsort.cpp',
2424
include_directories : [utils, lib],
2525
link_with : [libtargets],
@@ -31,9 +31,9 @@ libsimdsort = shared_library('x86simdsort',
3131
pkg_mod = import('pkgconfig')
3232
pkg_mod.generate(libraries : libsimdsort,
3333
version : '4.0',
34-
name : 'libx86simdsort',
35-
filebase : 'x86simdsort',
36-
description : 'High performance SIMD based sorting routines.')
34+
name : 'libx86simdsortcpp',
35+
filebase : 'x86simdsortcpp',
36+
description : 'C++ template library for high performance SIMD based sorting routines.')
3737

3838
# Build test suite if option build_tests set to true
3939
if get_option('build_tests')

0 commit comments

Comments
 (0)