Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux build #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Linux build #1

wants to merge 4 commits into from

Commits on Oct 3, 2015

  1. headers: <stdint.h> is C, use C++ standard header <cstdint> instead

    Not that stdint.h is going to be dangerous, but cstdint put the
    right things in the rights place (i.e. it put all newly defined
    types into namespace std).
    emmanuel-deloget committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    df4c523 View commit details
    Browse the repository at this point in the history
  2. headers: std::ptrdiff_t is defined in <cstddef>

    It seems that MSVC is not impacted by this change but gcc (and clang)
    are, so add the correct include to fix "undefined symbol" errors
    when using these compilers.
    emmanuel-deloget committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    b5026ae View commit details
    Browse the repository at this point in the history
  3. build system: adds a Makefile for linux

    The Makefile has been tested with GNU make.
    emmanuel-deloget committed Oct 3, 2015
    Configuration menu
    Copy the full SHA
    b7f69b5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    097eb86 View commit details
    Browse the repository at this point in the history