1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2024-12-16 16:35:45 +00:00

Change version to 0.3.0 throughout the project. Update ChangeLog.

This commit is contained in:
Veselin Georgiev 2016-06-03 21:15:37 +03:00
parent c31b5c0ae8
commit 5f99a4528c
6 changed files with 21 additions and 9 deletions

View file

@ -30,3 +30,13 @@ Version 0.2.2 (2015-11-04):
* More entries supported in cpu_msrinfo() * More entries supported in cpu_msrinfo()
* Rename of some CPU codenames, made more consistent * Rename of some CPU codenames, made more consistent
* *BSD and Solaris support (unofficial) * *BSD and Solaris support (unofficial)
Version 0.3.0 (2016-06):
* A backwards-incompatible change, since the sizeof cpu_raw_data_t and
cpu_id_t are now different.
* Support for processors up to Skylake.
* Fix clock detection in cpu_clock_by_ic() for Skylake.
* Support up to 8 subleaf entries for CPUID leaf 04 and detection
of L4 cache.
* MSR functions supported on FreeBSD.
* INFO_VOLTAGE request supported by cpu_msrinfo().

View file

@ -5,7 +5,7 @@ all: libcpuid.lib
ASM = ml64 /nologo ASM = ml64 /nologo
CC = cl.exe /nologo /TC CC = cl.exe /nologo /TC
OPTFLAGS = /MT OPTFLAGS = /MT
DEFINES = /D "VERSION=\"0.1.3\"" DEFINES = /D "VERSION=\"0.3.0\""
OBJECTS = masm-x64.obj asm-bits.obj cpuid_main.obj libcpuid_util.obj recog_amd.obj recog_intel.obj rdtsc.obj OBJECTS = masm-x64.obj asm-bits.obj cpuid_main.obj libcpuid_util.obj recog_amd.obj recog_intel.obj rdtsc.obj
libcpuid.lib: $(OBJECTS) libcpuid.lib: $(OBJECTS)

View file

@ -12,7 +12,7 @@ all: libcpuid.lib
CC = cl.exe /nologo /TC CC = cl.exe /nologo /TC
OPTFLAGS = /MT OPTFLAGS = /MT
DEFINES = /D "VERSION=\"0.1.3\"" DEFINES = /D "VERSION=\"0.3.0\""
OBJECTS = asm-bits.obj cpuid_main.obj libcpuid_util.obj recog_amd.obj recog_intel.obj rdtsc.obj OBJECTS = asm-bits.obj cpuid_main.obj libcpuid_util.obj recog_amd.obj recog_intel.obj rdtsc.obj
libcpuid.lib: $(OBJECTS) libcpuid.lib: $(OBJECTS)

View file

@ -49,8 +49,10 @@
* Fix clock detection in cpu_clock_by_ic() for Bulldozer. * Fix clock detection in cpu_clock_by_ic() for Bulldozer.
* More entries supported in cpu_msrinfo(). * More entries supported in cpu_msrinfo().
* *BSD and Solaris support (unofficial). * *BSD and Solaris support (unofficial).
* * 0.2.3 : Support for Skylake; MSR ops in FreeBSD; INFO_VOLTAGE * * 0.3.0 : Support for Skylake; MSR ops in FreeBSD; INFO_VOLTAGE
* for AMD CPUs. * for AMD CPUs. Level 4 cache support for Crystalwell
* (a backwards-incompatible change since the sizeof
* cpu_raw_data_t is now different).
*/ */
/** @mainpage A simple libcpuid introduction /** @mainpage A simple libcpuid introduction

View file

@ -19,7 +19,7 @@
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
Optimization="0" Optimization="0"
PreprocessorDefinitions="VERSION=\&quot;0.2.1\&quot;" PreprocessorDefinitions="VERSION=\&quot;0.3.0\&quot;"
MinimalRebuild="TRUE" MinimalRebuild="TRUE"
BasicRuntimeChecks="3" BasicRuntimeChecks="3"
RuntimeLibrary="3" RuntimeLibrary="3"
@ -60,7 +60,7 @@
CharacterSet="2"> CharacterSet="2">
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
PreprocessorDefinitions="VERSION=\&quot;0.2.1\&quot;" PreprocessorDefinitions="VERSION=\&quot;0.3.0\&quot;"
RuntimeLibrary="2" RuntimeLibrary="2"
UsePrecompiledHeader="0" UsePrecompiledHeader="0"
WarningLevel="3" WarningLevel="3"
@ -99,7 +99,7 @@
CharacterSet="2"> CharacterSet="2">
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
PreprocessorDefinitions="VERSION=\&quot;0.2.1\&quot;" PreprocessorDefinitions="VERSION=\&quot;0.3.0\&quot;"
RuntimeLibrary="2" RuntimeLibrary="2"
UsePrecompiledHeader="0" UsePrecompiledHeader="0"
WarningLevel="3" WarningLevel="3"

View file

@ -40,7 +40,7 @@
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
Optimization="0" Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;VERSION=&quot;\&quot;0.1.4\&quot;&quot;" PreprocessorDefinitions="WIN32;_DEBUG;_LIB;VERSION=&quot;\&quot;0.3.0\&quot;&quot;"
MinimalRebuild="true" MinimalRebuild="true"
BasicRuntimeChecks="3" BasicRuntimeChecks="3"
RuntimeLibrary="1" RuntimeLibrary="1"
@ -104,7 +104,7 @@
/> />
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
PreprocessorDefinitions="WIN32;NDEBUG;_LIB;VERSION=&quot;\&quot;0.1.4\&quot;&quot;" PreprocessorDefinitions="WIN32;NDEBUG;_LIB;VERSION=&quot;\&quot;0.3.0\&quot;&quot;"
RuntimeLibrary="0" RuntimeLibrary="0"
UsePrecompiledHeader="0" UsePrecompiledHeader="0"
WarningLevel="3" WarningLevel="3"