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
Change the library artifact name to 'scylladb', avoiding both
hyphens and underscores. This eliminates the need for the
underscore-to-hyphen rename that was causing issues on Windows.
The Cargo [lib] name is now 'scylladb', producing libscylladb.so,
libscylladb.a, scylladb.dll directly. The SONAME becomes
libscylladb.so.<major>.
The pkg-config module names change accordingly:
scylla-cpp-driver -> scylladb
scylla-cpp-driver_static -> scylladb_static
Package names (DEB/RPM) remain 'scylla-cpp-driver' unchanged.
Copy file name to clipboardExpand all lines: packaging/smoke-test-app/Makefile
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -342,7 +342,7 @@ install-driver-msi:
342
342
install-driver-dev-msi: install-driver-msi
343
343
344
344
verify-driver-dev-msi:
345
-
@pwsh.exe -NoProfile -Command "\$$ErrorActionPreference = 'Stop'; \$$installPath = '$(DRIVER_INSTALL_PATH)'; \$$headerPath = Join-Path \$$installPath 'include\cassandra.h'; if (-not (Test-Path \$$headerPath)) { throw 'ERROR: cassandra.h header not found at \$$headerPath - dev package may not be installed' }; \$$pkgConfigPath = Join-Path \$$installPath 'lib\pkgconfig\scylla-cpp-driver.pc'; if (-not (Test-Path \$$pkgConfigPath)) { throw 'ERROR: scylla-cpp-driver.pc not found at \$$pkgConfigPath - dev package may not be installed' }; Write-Host 'Dev package verification successful'"
345
+
@pwsh.exe -NoProfile -Command "\$$ErrorActionPreference = 'Stop'; \$$installPath = '$(DRIVER_INSTALL_PATH)'; \$$headerPath = Join-Path \$$installPath 'include\cassandra.h'; if (-not (Test-Path \$$headerPath)) { throw 'ERROR: cassandra.h header not found at \$$headerPath - dev package may not be installed' }; \$$pkgConfigPath = Join-Path \$$installPath 'lib\pkgconfig\scylladb.pc'; if (-not (Test-Path \$$pkgConfigPath)) { throw 'ERROR: scylladb.pc not found at \$$pkgConfigPath - dev package may not be installed' }; Write-Host 'Dev package verification successful'"
0 commit comments