Jump to content

1.3 Gibberish in contracts


Recommended Posts

  On 5/30/2017 at 8:01 PM, Daveroski said:

I don't have an output log I have a real operating system.

Expand  

What do you call a real operating system? Because unless Windows, Linux and MacOS are not real operating systems, you do have an output log.

Read the thread called "How To Get Support (READ FIRST)" to learn how to find it (clue's in the name).

Edited by Gaarst
Link to comment
Share on other sites

  On 5/30/2017 at 8:20 PM, Gaarst said:

What do you call a real operating system? Because unless Windows, Linux and MacOS are not real operating systems, you do have an output log.

Read the thread called "How To Get Support (READ FIRST)" to learn how to find it (clue's in the name).

Expand  

Maybe YOU should read it.

It is only called output.log on Windows.
On Mac and Linux it is called player.log.

[snip]

Link to comment
Share on other sites

[ERR 08:51:03.196] Couldn't open /home/daveroski/.local/share/Steam/steamapps/common/Kerbal Space Program/KSP_Data/Plugins/x86_64/liblingoona.grammar.kerbal.so, error: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by /home/daveroski/.local/share/Steam/steamapps/common/Kerbal Space Program/KSP_Data/Plugins/x86_64/liblingoona.grammar.kerbal.so)

Linux.

Fresh vanilla un-instal / re-install. 0 MODS.

Edited by Daveroski
Link to comment
Share on other sites

Looks like the "libstdc++" package isn't installed, or is installed incorrectly. Make sure it's installed by running

apt-get install libstdc++-6-dev

on the terminal, or whatever distro-specific command would install "libstdc++-6-dev". I've assumed you're running Ubuntu Yakkety (16.10) here, although this should work on most Ubuntu/Debian distros. If it says it's already installed, you might want to try uninstalling it, clearing the package cache, and reinstalling it.

Link to comment
Share on other sites

  On 5/31/2017 at 8:49 AM, ToTheMun said:

Looks like the "libstdc++" package isn't installed, or is installed incorrectly. Make sure it's installed by running

apt-get install libstdc++-6-dev

on the terminal, or whatever distro-specific command would install "libstdc++-6-dev". I've assumed you're running Ubuntu Yakkety (16.10) here, although this should work on most Ubuntu/Debian distros. If it says it's already installed, you might want to try uninstalling it, clearing the package cache, and reinstalling it.

Expand  

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package libstdc++-6-dev
E: Couldn't find any package by regex 'libstdc++-6-dev'

 

Edited by Daveroski
Link to comment
Share on other sites

  On 5/31/2017 at 9:39 AM, ToTheMun said:

Huh. Alrighty then. Searching the Ubuntu Package Listings it showed up, so your 'apt' might be broken. You could download it directly from the package listing, ensuring you've also got the pre-requisites installed using

apt-get update
apt-get install gcc-6-base libc6-dev libgcc-dev libstdc++6

 

Hopefully that'll work out.

Expand  

I'm on Linux Mint

  Reveal hidden contents

Alas no joy.

 

Link to comment
Share on other sites

Even so, Linux Mint is a Debian-based system, so it should be able to feed off of the same package names. Especially the GCC package, but even that's not installing...

So I did a bit more compatability searching/cross-checking, and those GCC packages I've been listing are only available to the latest bleeding-edge unstable versions of Debian... which I doubt you're running. With that said, I quickly spun up a Linux VM to test what packages do or do not work, and have since come up with the following commands:

apt-get clean
apt-get update
apt-get install gcc-4.8-base libc6-dev libgcc-4.8-dev libstdc++6

I can confirm that these commands worked for me on a completely fresh install of Debian 8.8 - Linux Mint runs Debian, so this should (touch wood) work.

Link to comment
Share on other sites

  On 5/31/2017 at 9:39 AM, ToTheMun said:

Huh. Alrighty then. Searching the Ubuntu Package Listings it showed up, so your 'apt' might be broken.

Expand  

It exists for Yakkety & Xenial, but not Trusty, upon which Mint Rosa is built, IIRC.
 

  On 5/31/2017 at 9:47 AM, Daveroski said:

I'm on Linux Mint

Alas no joy.

Expand  

Might be time to upgrade to Serena (Mint 18.1), you won't find those packages for Rosa.
 

  On 5/31/2017 at 10:00 AM, ToTheMun said:

Linux Mint runs Debian, so this should (touch wood) work.

Expand  

Looks like Mint mainline, not Mint DE. So nope, Debian package names won't work. Ubuntu ones should.

Link to comment
Share on other sites

  On 5/31/2017 at 10:00 AM, ToTheMun said:

Even so, Linux Mint is a Debian-based system, so it should be able to feed off of the same package names. Especially the GCC package, but even that's not installing...

So I did a bit more compatability searching/cross-checking, and those GCC packages I've been listing are only available to the latest bleeding-edge unstable versions of Debian... which I doubt you're running. With that said, I quickly spun up a Linux VM to test what packages do or do not work, and have since come up with the following commands:

apt-get clean
apt-get update
apt-get install gcc-4.8-base libc6-dev libgcc-4.8-dev libstdc++6

I can confirm that these commands worked for me on a completely fresh install of Debian 8.8 - Linux Mint runs Debian, so this should (touch wood) work.

Expand  
  Reveal hidden contents

I dunno... Think there might be a problem with pathing?

 

Link to comment
Share on other sites

  On 5/31/2017 at 10:29 AM, steve_v said:

It exists for Yakkety & Xenial, but not Trusty, upon which Mint Rosa is built, IIRC.
 

Might be time to upgrade to Serena (Mint 18.1), you won't find those packages for Rosa.
 

Looks like Mint mainline, not Mint DE. So nope, Debian package names won't work. Ubuntu ones should.

Expand  

Well there you go. I'm a bit rusty on my different flavours tbh :P

 

  On 5/31/2017 at 10:29 AM, Daveroski said:
  Reveal hidden contents

I dunno... Think there might be a problem with pathing?

 

Expand  

Try purging the packages, cleaning the apt, then installing them again.

apt-get purge gcc-4.8-base libc6-dev libgcc-4.8-dev libstdc++6
apt-get clean
apt-get update
apt-get install gcc-4.8-base libc6-dev libgcc-4.8-dev libstdc++6

Lengthy and repetitive, I know

Link to comment
Share on other sites

  On 5/31/2017 at 10:32 AM, ToTheMun said:

Well there you go. I'm a bit rusty on my different flavours tbh :P

Expand  

From that error message, it looks to me like we need GCC 4.9 libs here... They're not available in Trusty (and therefore Rosa), so if one really wants to stick with that release the packages will have to be backported.
Otherwise, upgrade to Sara or Serena is the simplest answer.

Link to comment
Share on other sites

  On 5/31/2017 at 10:40 AM, steve_v said:

From that error message, it looks to me like we need GCC 4.9 libs here... They're not available in Trusty (and therefore Rosa), so if one really wants to stick with that release the packages will have to be backported.
Otherwise, upgrade to Sara or Serena is the simplest answer.

Expand  

The error is only throwing up for his libstdc6++ source file though, which was installed, and only requires GCC 4.8 as a dependency. Unless I'm missing something?

Link to comment
Share on other sites

  On 5/31/2017 at 10:32 AM, ToTheMun said:

Well there you go. I'm a bit rusty on my different flavours tbh :P

 

Try purging the packages, cleaning the apt, then installing them again.

apt-get purge gcc-4.8-base libc6-dev libgcc-4.8-dev libstdc++6
apt-get clean
apt-get update
apt-get install gcc-4.8-base libc6-dev libgcc-4.8-dev libstdc++6

Lengthy and repetitive, I know

Expand  

Here's the output.

  Reveal hidden contents

Now I'm going to reboot to see what we broke.. :)

 

Link to comment
Share on other sites

  On 5/31/2017 at 10:41 AM, ToTheMun said:

The error is only throwing up for his libstdc6++ source file though, which was installed, and only requires GCC 4.8 as a dependency. Unless I'm missing something?

Expand  
  Quote

libstdc++.so.6: version `CXXABI_1.3.8' not found

Expand  

That's a version mismatch, the library exists, but doesn't support the ABI version the application was compiled with. ABI version 1.3.8 comes in with GCC 4.9.

  On 5/31/2017 at 10:45 AM, Daveroski said:

Now I'm going to reboot to see what we broke.. :)

Expand  

Nothing, I would think, as nothing was installed.
You just asked to install GCC 4.8, which is already installed and is the latest version available in Trusty / Rosa. You need GCC 4.9.

Link to comment
Share on other sites

  On 5/31/2017 at 10:46 AM, steve_v said:

That's a version mismatch, the library exists, but doesn't support the ABI version the application was compiled with. ABI version 1.3.8 comes in with GCC 4.9.

Expand  

Ooooohhhh, I completed skipped over that. I just looked at the source file :blush:

  On 5/31/2017 at 10:45 AM, Daveroski said:

Here's the output.

  Reveal hidden contents

Now I'm going to reboot to see what we broke.. :)

 

Expand  

Looks like the purge didn't even complete because it had dependent components, but as @steve_v mentioned, to get the packages that you need, you'll need to upgrade your OS. The command should be

apt-get dist-upgrade

and then a restart, IIRC.

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...