mirror of
https://github.com/vtil-project/VTIL-Core
synced 2026-08-17 08:23:03 -04:00
Fix Debug library of capstone (for /INCREMENTAL)
This commit is contained in:
parent
1004668b55
commit
136645748d
2 changed files with 3 additions and 3 deletions
|
|
@ -77,13 +77,13 @@
|
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<IncludePath>$(ProjectDir)..\Capstone\include;$(ProjectDir)..\Keystone\include;$(IncludePath)</IncludePath>
|
||||
<LibraryPath>$(ProjectDir)..\Keystone\build\llvm\lib\x64\Debug;$(ProjectDir)..\Capstone\msvc\x64\Release;$(LibraryPath)</LibraryPath>
|
||||
<LibraryPath>$(ProjectDir)..\Keystone\build\llvm\lib\x64\Debug;$(ProjectDir)..\Capstone\msvc\x64\Debug;$(LibraryPath)</LibraryPath>
|
||||
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\</OutDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<IncludePath>$(ProjectDir)..\Capstone\include;$(ProjectDir)..\Keystone\include;$(IncludePath)</IncludePath>
|
||||
<LibraryPath>$(ProjectDir)..\Keystone\build\llvm\lib\Debug;$(ProjectDir)..\Capstone\msvc\Release;$(LibraryPath)</LibraryPath>
|
||||
<LibraryPath>$(ProjectDir)..\Keystone\build\llvm\lib\Debug;$(ProjectDir)..\Capstone\msvc\Debug;$(LibraryPath)</LibraryPath>
|
||||
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\</OutDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ namespace vtil
|
|||
return { T( _reg ), 0, 8 };
|
||||
}
|
||||
|
||||
// Gets the base register for the given register.
|
||||
// Gets the base register for the given register. (EAX->RAX)
|
||||
//
|
||||
constexpr T extend( uint32_t _reg ) const
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue