mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
Fix issue #28: Windows Build error
msrdriver.c was forgotten from Makefile.am, under the assumption that autotools are used under *nix only. This is not true, as one could use MinGW or cygwin.
This commit is contained in:
parent
d954213667
commit
281d4720d4
1 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,8 @@ libcpuid_la_SOURCES = \
|
|||
rdtsc.c \
|
||||
asm-bits.c \
|
||||
libcpuid_util.c \
|
||||
rdmsr.c
|
||||
rdmsr.c \
|
||||
msrdriver.c
|
||||
|
||||
libcpuid_la_DEPENDENCIES = \
|
||||
$(srcdir)/libcpuid.sym
|
||||
|
|
Loading…
Reference in a new issue