Our website uses cookies to enhance your browsing experience.
Accept
to the top
close form

Fill out the form in 2 simple steps below:

Your contact information:

Step 1
Congratulations! This is your promo code!

Desired license type:

Step 2
Team license
Enterprise license
** By clicking this button you agree to our Privacy Policy statement
close form
Request our prices
New License
License Renewal
--Select currency--
USD
EUR
* By clicking this button you agree to our Privacy Policy statement

close form
Free PVS‑Studio license for Microsoft MVP specialists
* By clicking this button you agree to our Privacy Policy statement

close form
To get the licence for your open-source project, please fill out this form
* By clicking this button you agree to our Privacy Policy statement

close form
I am interested to try it on the platforms:
* By clicking this button you agree to our Privacy Policy statement

close form
check circle
Message submitted.

Your message has been sent. We will email you at


If you haven't received our response, please do the following:
check your Spam/Junk folder and click the "Not Spam" button for our message.
This way, you won't miss messages from our team in the future.

>
>
Verifying projects utilizing Marmalade …

Verifying projects utilizing Marmalade SDK with PVS-Studio analyzer

Mar 19 2012
Author:

Marmalade SDK (which was previously called AirPlaySDK) is a cross-platform SDK which allows the development of multi-platform applications for such mobile platforms, as iOS, Android, Symbian and several others.

Marmalade SDK supports the development inside Visual Studio IDE by generating regular Visual C++ project files. However, such projects do not call cl.exe, the Visual C++ compiler, directly. Instead, they utilize a special wrapper (also named cl.exe) which is added to the PATH variable through IDE settings (for Visual Studio versions prior to 2010) or project settings (for Visual Studio 2010 and later versions) VC++ Directories/Executable Directories. In turn, this wrapper calls the native Visual C++ compiler, appending and/or modifying several compilation arguments defined inside Visual C++ project in the process.

But to verify source files, the PVS-Studio analyzer calls the preprocessor (cl.exe or clang) directly. PVS-Studio receives its' required compilation arguments straight from project files through the IDE API which leads to compilation errors in case one of such Marmalade SDK generated project files is being verified because SDK header files do require the definitions which are included in its' compiler wrappers.

As a workaround to check Marmalade SDK projects with PVS-Studio, the project's compilation arguments could be modified manually by including some of these wrapper arguments into them. To prevent potential conflicts when compiling the project afterwards, it is preferable to create a separate build configuration in the Configuration Manager for this project (for example, Debug_PVS_Studio, by duplicating the Debug configuration). These changes should be made to this new configuration:

  • Adding the /X compiler argument (Ignores the standard include directory)
  • Adding the define symbol __S3E_CL_WRAPPER
  • Renaming the define symbol I3D_ARCH_ARM into the I3D_ARCH_X86

Before launching PVS-Studio, it is advised to set the preprocessing mode as 'Visual C++' (PVS-Studio->Options->Common Analyzer Settings->Preprocessor).

Popular related articles


Comments (0)

Next comments next comments
close comment form