Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Prep291 #32

Merged
merged 3 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Fully Supported Platforms
- Operating Systems: Ubuntu 16.04, 18.04, 20.04, 22.04, CentOS 7, Amazon Linux 2, Debian 11, RHEL 9, Rocky Linux 8
Note: svr-info may work on other micro-architectures and Linux distributions, but has not been thoroughly tested

2.9.1
Bugs Fixed
- Extremely long run time on some EMR virtual machines

2.9.0
Features Added
- Report CPU temperature when CPUs have been active when '-benchmark turbo' is run
Expand Down
3 changes: 3 additions & 0 deletions third_party/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ endif
tar -xf async-profiler-$(ASYNCPROFILER_VERSION)-linux-x64.tar.gz && mv async-profiler-$(ASYNCPROFILER_VERSION)-linux-x64 async-profiler
endif

# if you change the version, check the sed hacks below
CPUID_VERSION := 20230614
cpuid:
ifeq ("$(wildcard cpuid)","")
Expand All @@ -49,6 +50,8 @@ endif
endif
# gcc 4.8 doesn't support -Wimplicit-fallthrough option
cd cpuid && sed -i s/"-Wimplicit-fallthrough"/""/ Makefile
# modifies one line to short-circuit output due to potential infinite loop on some systems
cd cpuid && sed -i 11242s/"(words\[WORD_EAX\] & 0xfff)"/0/ cpuid.c
cd cpuid && make

dmidecode:
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.9.0
2.9.1
Loading