Skip to content

Commit

Permalink
Fixing API versioning as 11.1
Browse files Browse the repository at this point in the history
Major API version was incorrectly bumped to 12 while there was no
ABI changes. This commit gets it back to 11 and bumps minor version
instead.

Fixes: 94306f5 ("Initial Multi adapter changes")

Change-Id: Id2dc7d1e7a2dd0b9861a09e53822b0f088762f49
Signed-off-by: Dmitry Rogozhkin <dmitry.v.rogozhkin@intel.com>
  • Loading branch information
dvrogozh committed Dec 12, 2019
1 parent 63c625d commit eb2db6f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Source/GmmLib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ cmake_minimum_required(VERSION 3.5)
project(igfx_gmmumd)

# GmmLib Api Version used for so naming
set(GMMLIB_API_MAJOR_VERSION 12)
set(GMMLIB_API_MINOR_VERSION 0)
set(GMMLIB_API_MAJOR_VERSION 11)
set(GMMLIB_API_MINOR_VERSION 1)

if(NOT DEFINED MAJOR_VERSION)
set(MAJOR_VERSION 12)
set(MAJOR_VERSION 11)
endif()

if(NOT DEFINED MINOR_VERSION)
set(MINOR_VERSION 0)
set(MINOR_VERSION 1)
endif()

if(NOT DEFINED PATCH_VERSION)
Expand Down
4 changes: 2 additions & 2 deletions Source/GmmLib/inc/External/Common/GmmLibDllName.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ OTHER DEALINGS IN THE SOFTWARE.
#if defined(_WIN64)
#define GMM_UMD_DLL "igdgmm64.dll"
#else
#define GMM_UMD_DLL "libigdgmm.so.12"
#define GMM_UMD_DLL "libigdgmm.so.11"
#endif
#else
#define GMM_ENTRY_NAME "_OpenGmm@4"
Expand All @@ -40,6 +40,6 @@ OTHER DEALINGS IN THE SOFTWARE.
#if defined(_WIN32)
#define GMM_UMD_DLL "igdgmm32.dll"
#else
#define GMM_UMD_DLL "libigdgmm.so.12"
#define GMM_UMD_DLL "libigdgmm.so.11"
#endif
#endif

0 comments on commit eb2db6f

Please sign in to comment.