mirror of https://github.com/rusefi/openblt.git
Refs #481. Added support for building the host tools with Visual Studio 2019.
git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@826 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
parent
b483c7f349
commit
94aa1b85dd
Binary file not shown.
|
@ -25,7 +25,7 @@
|
||||||
# \endinternal
|
# \endinternal
|
||||||
#****************************************************************************************
|
#****************************************************************************************
|
||||||
# Specify the version being used aswell as the language
|
# Specify the version being used aswell as the language
|
||||||
cmake_minimum_required(VERSION 2.8)
|
cmake_minimum_required(VERSION 3.1)
|
||||||
|
|
||||||
|
|
||||||
#****************************************************************************************
|
#****************************************************************************************
|
||||||
|
|
|
@ -49,6 +49,8 @@
|
||||||
-elib(553) // undefined preprocessor variables assumed 0
|
-elib(553) // undefined preprocessor variables assumed 0
|
||||||
-elib(1081) // suspicious object argument to an object parameter
|
-elib(1081) // suspicious object argument to an object parameter
|
||||||
-elib(726) // extraneous comma in enum definition
|
-elib(726) // extraneous comma in enum definition
|
||||||
|
-elib(157) // suppress message about no data may follow an incomplete array
|
||||||
|
-elib(91) // suppress message about line exceeds 598 characters
|
||||||
|
|
||||||
// SREGS, WORDREGS, BYTEREGS are defined in both bios.h and dos.h
|
// SREGS, WORDREGS, BYTEREGS are defined in both bios.h and dos.h
|
||||||
// and accordingly you MAY get type differences based on 'origin'.
|
// and accordingly you MAY get type differences based on 'origin'.
|
||||||
|
@ -258,6 +260,9 @@ lib-ole.lnt
|
||||||
|
|
||||||
+rw(__restrict) // reserved word
|
+rw(__restrict) // reserved word
|
||||||
|
|
||||||
|
// Needed for VC++ 2019
|
||||||
|
-efile(766, stddef.h, string.h, stdlib.h)
|
||||||
|
|
||||||
// Partial support for the "old" (VC++ 2003) Managed Extensions
|
// Partial support for the "old" (VC++ 2003) Managed Extensions
|
||||||
// syntax:
|
// syntax:
|
||||||
+rw( __gc, __value, __nogc, __pin, __ptr32, __ptr64 )
|
+rw( __gc, __value, __nogc, __pin, __ptr32, __ptr64 )
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
# \endinternal
|
# \endinternal
|
||||||
#****************************************************************************************
|
#****************************************************************************************
|
||||||
# Specify the version being used aswell as the language
|
# Specify the version being used aswell as the language
|
||||||
cmake_minimum_required(VERSION 2.8)
|
cmake_minimum_required(VERSION 3.1)
|
||||||
|
|
||||||
|
|
||||||
#****************************************************************************************
|
#****************************************************************************************
|
||||||
|
|
|
@ -260,6 +260,9 @@ lib-ole.lnt
|
||||||
|
|
||||||
+rw(__restrict) // reserved word
|
+rw(__restrict) // reserved word
|
||||||
|
|
||||||
|
// Needed for VC++ 2019
|
||||||
|
-efile(766, stddef.h, string.h, stdlib.h)
|
||||||
|
|
||||||
// Partial support for the "old" (VC++ 2003) Managed Extensions
|
// Partial support for the "old" (VC++ 2003) Managed Extensions
|
||||||
// syntax:
|
// syntax:
|
||||||
+rw( __gc, __value, __nogc, __pin, __ptr32, __ptr64 )
|
+rw( __gc, __value, __nogc, __pin, __ptr32, __ptr64 )
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
# \endinternal
|
# \endinternal
|
||||||
#****************************************************************************************
|
#****************************************************************************************
|
||||||
# Specify the version being used aswell as the language
|
# Specify the version being used aswell as the language
|
||||||
cmake_minimum_required(VERSION 2.8)
|
cmake_minimum_required(VERSION 3.1)
|
||||||
|
|
||||||
|
|
||||||
#****************************************************************************************
|
#****************************************************************************************
|
||||||
|
|
|
@ -260,6 +260,9 @@ lib-ole.lnt
|
||||||
|
|
||||||
+rw(__restrict) // reserved word
|
+rw(__restrict) // reserved word
|
||||||
|
|
||||||
|
// Needed for VC++ 2019
|
||||||
|
-efile(766, stddef.h, string.h, stdlib.h)
|
||||||
|
|
||||||
// Partial support for the "old" (VC++ 2003) Managed Extensions
|
// Partial support for the "old" (VC++ 2003) Managed Extensions
|
||||||
// syntax:
|
// syntax:
|
||||||
+rw( __gc, __value, __nogc, __pin, __ptr32, __ptr64 )
|
+rw( __gc, __value, __nogc, __pin, __ptr32, __ptr64 )
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue