Giter Site home page Giter Site logo

testcpp's Introduction

This is a C++ example project I use to test features and code within a small testable environment. It includes a cmake build project and a Makefile build project. I am currently forcing myself to use and learn the cmake environment so its more second nature to me again.

It should be noted that if you are using clang and boost on a Linux platform then be very wary. The boost that is installed via apt-get is most likey (no always) compiled via G++ using the libstdc++. This means when it has a source file which defines a function that either takes/returns a std::string then it will be compiled using the libstdc++ definition of the std::string (those bits). But when you compile the main.cpp and include the same boost header file it will see the definition of the function with the std::string defined as the bits being as defined by libc++. CORE DUMP!

Since cmake should not be placing the build artifacts within the source tree create a sibling directory outside the source tree and execute the commands to build:

If using the following testcpp directory:

~/code/test/testcpp mkdir ~/code/test/build cd ~/code/test/build CC=clang CXX=clang++ cmake ../testcpp make

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.