Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7d7694dde553
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 502e7c00079f
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Jul 12, 2020

  1. Copy the full SHA
    74a0835 View commit details
  2. After egg's review.

    pleroy committed Jul 12, 2020
    Copy the full SHA
    d518fce View commit details
  3. Merge pull request #2638 from pleroy/Libs

    Mention proper library versions in the loader error message
    pleroy authored Jul 12, 2020
    Copy the full SHA
    502e7c0 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 ksp_plugin_adapter/loader.cs
4 changes: 2 additions & 2 deletions ksp_plugin_adapter/loader.cs
Original file line number Diff line number Diff line change
@@ -36,8 +36,8 @@ internal static string LoadPrincipiaDllAndInitGoogleLogging() {
@"GameData/Principia/Linux64/principia.so",
@"GameData/Principia/MacOS64/principia.so"};
is_cxx_installed = null;
required_cxx_packages = "libc++ and libc++abi 6.0-2 (Linux) or " +
"El Capitan or later (MacOS)";
required_cxx_packages = "libc++abi1-8 and libc++1-8 or later (Linux) " +
"or Sierra or later (MacOS)";
break;
default:
return "The operating system " + Environment.OSVersion +