acpica/generate/msvc9
Robert Moore 93c1c10009 iASL: Implement wildcard support for -e option (get external tables).
This change implements wildcard support for this option. It also
removes the local implementation of wildcard expansion. This part
affects the windows version only. Windows version is now linked
to the setargv.obj library to get this support.
2013-08-30 13:05:16 -07:00
..
AcpiBin.vcproj Update makefiles and project files for new file. 2013-04-19 10:05:13 -07:00
AcpiComponents.sln Update makefiles and project files for new acpidump utility. 2013-05-02 09:32:44 -07:00
AcpiDump.vcproj AcpiDump: Update for windows OSL and project file. 2013-08-22 09:31:27 -07:00
AcpiExec.vcproj AcpiExec: Remove local wildcard support. 2013-08-30 13:02:21 -07:00
AcpiHelp.vcproj Makefiles and project files: update for new source file. 2013-02-27 13:41:51 -08:00
AcpiNames.vcproj Update makefiles and project files for new file. 2013-04-30 08:26:20 -07:00
AcpiSrc.vcproj Windows project files: Update for browsing information. 2012-10-18 10:29:01 -07:00
AcpiSubsystem.vcproj Update makefiles and project files for new file. 2013-04-30 08:26:20 -07:00
AcpiXtract.vcproj Windows project files: Update for browsing information. 2012-10-18 10:29:01 -07:00
ApiTest.vcproj Update makefiles and project files for new file. 2013-04-30 08:26:20 -07:00
AslCompiler.vcproj iASL: Implement wildcard support for -e option (get external tables). 2013-08-30 13:05:16 -07:00
Examples.vcproj Windows project files: Update for browsing information. 2012-10-18 10:29:01 -07:00
Makefiles.vcproj Update makefiles and project files for new acpidump utility. 2013-05-02 09:32:44 -07:00
readme.txt Update readme files for ACPICA and iASL generation. 2012-10-05 09:09:40 -07:00
Scripts.vcproj Windows project files: Add Makefile/script subprojects. 2013-01-30 12:10:56 -08:00

/*
 * Generation of ACPICA with MS Visual Studio 2008
 */

The Visual Studio project file (for Visual Studio 2008)
appears in this directory:

    generate/msvc9/AcpiComponents.sln

ACPICA generates with all MS C language extensions disabled, since the
code is ANSI conformant and is meant to be highly portable.

There are a couple of include files in MS Visual Studio 2008 that
unfortunately contain non-ANSI // style comments. These will be flagged
as warnings since language extensions are disabled.

The VC include files are under one of these directories:

    \Program Files\Microsoft Visual Studio 9.0\VC\include
    \Program Files (x86)\Microsoft Visual Studio 9.0\VC\include

To eliminate these warnings, modify each of these include files:

    sal.h
    stdlib.h

For each file, add this statement to the start of the file:

    #pragma warning( disable : 4001 ) /* no warning about "//" comments */

and add this statement to the end of the file:

    #pragma warning( default : 4001 )


Note: you may have to change the permissions on these files in order
to write to them.