bhadhy
bhadhy
Using the 0.10.0 release tag of TileDB-MariaDB, and turing off S3 and Azure build completes successfully. The steps are: mkdir build_deps cd build_deps powershell -Command "Invoke-WebRequest https://netactuate.dl.sourceforge.net/project/gnuwin32/bison/2.4.1/bison-2.4.1-dep.zip -OutFile bison-2.4.1-dep.zip" powershell...
Regarding inclusion of stdexcept to base64.cpp. The https://github.com/Azure/azure-storage-cpplite/blob/master/src/base64.cpp already has the fix. However we are pulling 0.3.0 tag. And there is no newer tag. What do we do?
Regarding release vs debug build: I made the change you suggested to CMakeLists.txt by adding -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} The release build from top level built successfully. The steps were: cmake -DPLUGIN_TOKUDB=NO -DPLUGIN_ROCKSDB=NO...
CMakeLists.txt has following line. SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=non-virtual-dtor") If I comment that out, I get following error C:\work\mariadb\10.5\builddir\storage\mytile\externals\install\include\tiledb\type.h(344,18): error C2039: 'runtime_error': is not a member of 'std' [C:\work\mariadb\10.5\builddir\storage\mytile\mytile.vcxproj] C:\work\mariadb\10.5\builddir\storage\mytile\externals\install\include\tiledb\type.h(344,18): error C2039:...
I changed storage/mytile/CMakeLists.txt to have MSVC guard as you suggested: ``` if(NOT MSVC) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=non-virtual-dtor") endif() ``` Then I also changed the TILEDB_LIBRARIES for MSVC so that it points...
Do you know what is "-SWITH_DEBUG=1"? It is specified in Line 66 https://github.com/TileDB-Inc/TileDB-MariaDB/blob/erica/ch922/windows-build/scripts/azure-windows.yml
Once again in storage/mytile/CMakeLists.txt, I dropped the MODULE_ONLY ``` if(WITH_EMBEDDED_SERVER) MYSQL_ADD_PLUGIN(mytile ${SOURCE_FILES} STORAGE_ENGINE DEFAULT RECOMPILE_FOR_EMBEDDED LINK_LIBRARIES ${TILEDB_LIBRARIES}) # Else build as a dynamic library else() # MYSQL_ADD_PLUGIN(mytile ${SOURCE_FILES} STORAGE_ENGINE DEFAULT...
> > Do you know what is "-SWITH_DEBUG=1"? > > It is specified in Line 66 https://github.com/TileDB-Inc/TileDB-MariaDB/blob/erica/ch922/windows-build/scripts/azure-windows.yml > > That sets whether to build in debug mode I guess, but...
I am sorry. Looks like the same problems exists in both Release or Debug builds. I started from a completely clean folder to do a release build and encountered the...
Here are the steps I followed. 1. Set environment ``` @echo off set PATH=C:\Program Files\Git\bin;C:\Program Files\Git\usr\bin;%PATH% set PATH=C:\work\utils\strawberry-perl-5.32.1.1-64bit\perl\bin;%PATH% set PATH=C:\work\utils\diffutils-2.8.7-1-bin;%PATH% call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 set PATH=C:\Program Files...