Asus Z87 PRO - 팬 속도 감지기 - nct6775 드라이버 '만들기' 실패

Asus Z87 PRO - 팬 속도 감지기 - nct6775 드라이버 '만들기' 실패

최근 설명할 수 없는 5°C 이상의 온도 상승으로 인해 HTPC의 팬을 모니터링하고 싶습니다. 패키지 'lm-sensors'가 팬 센서를 감지하지 못합니다. 몇 가지 조사 끝에 내 mobo Z87 PRO에 Nuvoton 칩에 사용할 수 있는 드라이버가 있다는 것을 발견했습니다.

https://github.com/groeck/nct6775

제작/컴파일할 때 다음 오류가 발생합니다.

~/Z87 Drivers/nct6775-master$ sudo make
**arch/x86/Makefile:136: CONFIG_X86_X32 enabled but no binutils support
Makefile:652: Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: -fstack-        protector not supported by compiler
make[1]: *** No rule to make target 'Drivers/nct6775-master'.  Stop.
Makefile:30: recipe for target 'modules' failed
make: *** [modules] Error 2**
~/Z87 Drivers/nct6775-master$ 

어떤 아이디어가 있나요?

정말 감사합니다.

답변1

나는 다음 순서를 제안한다:

sudo apt-get install build-essential linux-headers-generic
cd ~/Z87\ Drivers/nct6775-master
make clean
make
sudo make install

관련 정보