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

Tweak principia_make.sh cmake flags #4

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

Commits on Oct 29, 2018

  1. The files that we ignore.

    pleroy committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    7ce633a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    66e3f2e View commit details
    Browse the repository at this point in the history
  3. Change the test files to avoid multiple mains and to run more tests. …

    …Ultimately this should really use gtest.
    pleroy committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    f586d2c View commit details
    Browse the repository at this point in the history
  4. Change a check in DenseRange: on the one hand, going from -5 to 3 wit…

    …h step of 1 makes perfect sense, on the other hand a negative step would cause trouble.
    pleroy committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    7d8abdb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bf74a32 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    949c36b View commit details
    Browse the repository at this point in the history
  7. Visual Studio 2017

    pleroy committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    16a6ed0 View commit details
    Browse the repository at this point in the history
  8. /GL and /LTCG in Release mode

    pleroy committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    c87c5d9 View commit details
    Browse the repository at this point in the history
  9. Remove Win32.

    pleroy committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    59f2aee View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    bc61722 View commit details
    Browse the repository at this point in the history
  11. Comma after main.

    pleroy committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    c7696ac View commit details
    Browse the repository at this point in the history
  12. Remove extra main.

    pleroy committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    bbdba92 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2019

  1. Configuration menu
    Copy the full SHA
    caed86b View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2019

  1. Compiler upgrade.

    pleroy committed Jun 9, 2019
    Configuration menu
    Copy the full SHA
    4a63552 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    47d58c4 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2019

  1. vectorcall

    eggrobin committed Nov 30, 2019
    Configuration menu
    Copy the full SHA
    2079152 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2020

  1. principia_make

    eggrobin committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    04a1ddc View commit details
    Browse the repository at this point in the history
  2. split

    eggrobin committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    84aedd0 View commit details
    Browse the repository at this point in the history
  3. rename

    eggrobin committed Apr 10, 2020
    Configuration menu
    Copy the full SHA
    ebe77b0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1a3fc73 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2020

  1. Tweak principia_make.sh cmake flags

    CMAKE_LD_FLAGS isn't recognized by CMake:
    
        CMake Warning:
          Manually-specified variables were not used by the project:
        
            CMAKE_LD_FLAGS
    
    No replacement is needed since static libraries are created for
    consumption by Principia and those use ar instead of ld.
    
    "." is added to the command line to future-proof the command against
    future CMake releases:
    
        CMake Warning:
          No source or binary directory provided.  Both will be assumed to be the
          same as the current working directory, but note that this warning will
          become a fatal error in future CMake releases.
    ts826848 authored Apr 12, 2020
    Configuration menu
    Copy the full SHA
    c2477ac View commit details
    Browse the repository at this point in the history