SpinCore Logo Home
Applications
Contact Us
Purchasing Info
About Us
Software Downloads

banner_left.jpg banner_right.jpg




SpinCore PulseBlasterDDS-IV-1000 Compilation with Microsoft Visual C++

1  Introduction

This document is designed to walk one through the process of configuring Microsoft Visual C++ to compile C code based on the SpinCore PulseBlasterDDS-IV API. It details the process of adding the proper include and library paths, as well as the required library dependency. Microsoft Visual C++ 2010 SP1 Express was used for generating the instructions and images. The directions should apply to older or newer versions of Visual C++, with minor differences.

2  Create Project

  1. Open Microsoft Visual C++
  2. Select “File > New > Project...”
  3. Select “Win32 Console Application.”
  4. Specify your project name and location.

Creat Project
Figure 1: New Project Wizard

2.1  

Please click “Next” on this page.


Next
Figure 2: Win32 Application Wizard Page 1

2.2  

  1. Click the “Console application” radio button.
  2. Select “Empty project” under additional options. An empty project will be used for this guide since the source code is already written, and will be copied to the project directory. You may opt to not create a blank project if you wish to write new code based on the initial files Visual C++ will generate.
  3. Click finish.

Console
Figure 3: Win32 Application Wizard Page 2

3  Configure Project

3.1  Adding Source Files

  1. Copy your source file into the project directory, and select “Project > Add Existing Item...”
  2. Select your source file located in the project directory, and click “Add.” For this example, the “pbddsiv_read_firmware_example.c” example program was used. The figure below shows what your “Solution Explorer” pane should display after adding the file.

Adding Source Files
Figure 4: Visual C++ Main Window, after source file is added.

3.2  Adding Include Paths

First we will configure Visual C++ so that it will find “ddsivapi.h”.

  1. Go to “Project > Properties”.
  2. In the upper left corner of the “Property Pages.” window, please select “All Configurations” in the “Configuration:” drop-down menu.
  3. In the left pane select “Configuration Properties > C/C++ > General.”
  4. In the main view, add the path where “ddsivapi.h” is located to the “Additional Include Directories” property. In this case it is located in “C:\SpinCore\PBDDSIV\inc”.
  5. Click “Apply.”

Adding Include Paths
Figure 5: Visual C++ Property Pages

3.3  Adding Library Paths

Next we will add the library search path for “pbddsiv.lib”. The Property Pages should still be open from the previous step.

  1. Please navigate to “Configuration Properties > Linker > General” in the left panel.
  2. Now add the path to the library to the “Additional Library Directories” property. In this case, the path was “C:\SpinCore\PBDDSIV\lib”.
  3. Click “Apply.”

Adding Library Paths
Figure 6: Visual C++ Property Pages

3.4  Adding Library Dependency

Now the dependency on “pbddsiv.lib” needs to be added. The Property Pages should still be open.

  1. Navigate to “Configuration Properties > Linker > Input” in the left panel.
  2. For the “Additional Dependencies” attribute, please click once on the field, then select the drop-down arrow and click “<Edit>”, which should bring up the menu shown in the figure below.
  3. Enter the name of the library, which in this case is “pbddsiv.lib”.
  4. Press “OK.”
  5. Press “OK” on the Property Pages window.

Adding Library Dependency
Figure 7: Visual C++ Additional Library Dependencies

4  Compilation

Now that the project has been properly configured, to compile the project please go to “Build > Build Solution” or press F7. If you do not want debug data to be compiled into your executable, please select “Release” rather than “Debug” in the “Solution Configurations” drop-down menu on the toolbar.


Compilation
Figure 8: Visual C++ Compilation Complete

4.1  Common Compilation Issues

  • The Visual C++ C compiler requires that all variable declarations occur at the beginning of a block. If this convention is not obeyed, Visual C++ will usually give errors about undeclared variables.
  • Sometimes code that will compile in another compiler (such as GCC) will require additional includes for functions that are implicitly defined (e.g.: “system()” requires “stdlib.h”). This will give a warning at compile time.



Home | Products | Applications | Contact Us | Purchasing Info | About Us | Software Downloads

© 2021 SpinCore Technologies, Inc.