Changing Oolite...
Moderators: winston, another_commander
- hiran
- Theorethicist
- Posts: 2403
- Joined: Fri Mar 26, 2021 1:39 pm
- Location: a parallel world I created for myself. Some call it a singularity...
Re: Changing Oolite...
It seems to me the whole Oolite stuff is extremely volatile.
I tried now to run Oolite compiled on Ubuntu 20 on my Ubuntu 20. That seems to work.
I tried now to run Oolite compiled on Ubuntu 20 on Debian 10. That breaks and is no surprise.
I tried now to run Oolite compiled on Debian 10 on my Ubuntu 20. That segfaults if I include most libraries from Debian 10.
I tried now to run Oolite compiled on Debian 10 on my Ubuntu 20. That cannot find the gnustep library if I include just the Oolite's project's libs.
I tried now to run Oolite compiled on Ubuntu 18 on my Ubuntu 20. That cannot find the gnustep library if I include just the Oolite's project's libs.
I went into that trial phase after I read that for cross platform compatibility it is advisable to compile on the oldest still supported OS and thus increase chances the build would run on more up to date versions. Debian 10 is the base for Ubuntu 18. And I am not sure what libraries to package it with.
How has this been tackled in the past?
I tried now to run Oolite compiled on Ubuntu 20 on my Ubuntu 20. That seems to work.
I tried now to run Oolite compiled on Ubuntu 20 on Debian 10. That breaks and is no surprise.
I tried now to run Oolite compiled on Debian 10 on my Ubuntu 20. That segfaults if I include most libraries from Debian 10.
I tried now to run Oolite compiled on Debian 10 on my Ubuntu 20. That cannot find the gnustep library if I include just the Oolite's project's libs.
I tried now to run Oolite compiled on Ubuntu 18 on my Ubuntu 20. That cannot find the gnustep library if I include just the Oolite's project's libs.
I went into that trial phase after I read that for cross platform compatibility it is advisable to compile on the oldest still supported OS and thus increase chances the build would run on more up to date versions. Debian 10 is the base for Ubuntu 18. And I am not sure what libraries to package it with.
How has this been tackled in the past?
Sunshine - Moonlight - Good Times - Oolite
-
- Quite Grand Sub-Admiral
- Posts: 6681
- Joined: Wed Feb 28, 2007 7:54 am
Re: Changing Oolite...
This all happens because each distro has its own versions of libraries, so when you link the executable with the libraries on your build machine, there is no guarantee that the same versions will be found in other distros. It is very common for newer versions of libraries to implement new APIs or change existing ones drastically. So, you may build against e.g. libpng14, but the system you try to run the game on uses libpng16. Or maybe there is a change in the sound API from distro to distro. Now consider this for the tens of dependencies of Oolite This could explain why your Ubuntu 20-on-Ubuntu-20 combination works and everything else fails.hiran wrote: ↑Tue Jan 25, 2022 6:34 pmIt seems to me the whole Oolite stuff is extremely volatile.
I tried now to run Oolite compiled on Ubuntu 20 on my Ubuntu 20. That seems to work.
I tried now to run Oolite compiled on Ubuntu 20 on Debian 10. That breaks and is no surprise.
I tried now to run Oolite compiled on Debian 10 on my Ubuntu 20. That segfaults if I include most libraries from Debian 10.
I tried now to run Oolite compiled on Debian 10 on my Ubuntu 20. That cannot find the gnustep library if I include just the Oolite's project's libs.
I tried now to run Oolite compiled on Ubuntu 18 on my Ubuntu 20. That cannot find the gnustep library if I include just the Oolite's project's libs.
I went into that trial phase after I read that for cross platform compatibility it is advisable to compile on the oldest still supported OS and thus increase chances the build would run on more up to date versions. Debian 10 is the base for Ubuntu 18. And I am not sure what libraries to package it with.
How has this been tackled in the past?
The only reasonable way to tackle this is what we decided and agreed to do early on in the project: Stick to very specific versions of libraries which are known to work without any problems, ensure the game is compiled against those specific dependencies and include the very same library versions used to compile and link against in the final game package that gets distributed. This is the reason why whenever there is a problem with self-compiles on Linux, the solution that works 99% of the time is to "download and use the pre-built binaries from the Oolite website". We know exactly how everything is compiled and we know that no matter what libraries exist in the user's system, the game will run using our own library versions (this is the main task of the wrapper script; to set up the closed ecosystem for the game to run in).
Compiling on the oldest supported OS is probably not as important as ensuring that you know exactly what dependencies you are building (and running) against right from the start.
- hiran
- Theorethicist
- Posts: 2403
- Joined: Fri Mar 26, 2021 1:39 pm
- Location: a parallel world I created for myself. Some call it a singularity...
Re: Changing Oolite...
What you wrote is exactly how I understand the problem. Yes.another_commander wrote: ↑Tue Jan 25, 2022 7:01 pmThis all happens because each distro has its own versions of libraries, so when you link the executable with the libraries on your build machine, there is no guarantee that the same versions will be found in other distros. It is very common for newer versions of libraries to implement new APIs or change existing ones drastically. So, you may build against e.g. libpng14, but the system you try to run the game on uses libpng16. Or maybe there is a change in the sound API from distro to distro. Now consider this for the tens of dependencies of Oolite This could explain why your Ubuntu 20-on-Ubuntu-20 combination works and everything else fails.hiran wrote: ↑Tue Jan 25, 2022 6:34 pmIt seems to me the whole Oolite stuff is extremely volatile.
I tried now to run Oolite compiled on Ubuntu 20 on my Ubuntu 20. That seems to work.
I tried now to run Oolite compiled on Ubuntu 20 on Debian 10. That breaks and is no surprise.
I tried now to run Oolite compiled on Debian 10 on my Ubuntu 20. That segfaults if I include most libraries from Debian 10.
I tried now to run Oolite compiled on Debian 10 on my Ubuntu 20. That cannot find the gnustep library if I include just the Oolite's project's libs.
I tried now to run Oolite compiled on Ubuntu 18 on my Ubuntu 20. That cannot find the gnustep library if I include just the Oolite's project's libs.
I went into that trial phase after I read that for cross platform compatibility it is advisable to compile on the oldest still supported OS and thus increase chances the build would run on more up to date versions. Debian 10 is the base for Ubuntu 18. And I am not sure what libraries to package it with.
How has this been tackled in the past?
The only reasonable way to tackle this is what we decided and agreed to do early on in the project: Stick to very specific versions of libraries which are known to work without any problems, ensure the game is compiled against those specific dependencies and include the very same library versions used to compile and link against in the final game package that gets distributed. This is the reason why whenever there is a problem with self-compiles on Linux, the solution that works 99% of the time is to "download and use the pre-built binaries from the Oolite website". We know exactly how everything is compiled and we know that no matter what libraries exist in the user's system, the game will run using our own library versions (this is the main task of the wrapper script; to set up the closed ecosystem for the game to run in).
Compiling on the oldest supported OS is probably not as important as ensuring that you know exactly what dependencies you are building (and running) against right from the start.
That is why I compiled on Debian 10 and Ubuntu 18 (which is based on the latter) AND included all the libraries it depends on apart from glibc.
Why so?
Including all the libraries addresses exactly your second paragraph. That way I know the libraries the code was compiled against are available at runtime. glibc however has a strong dependendy on the running kernel, hence it makes little sense to include that as well.
As other sites state, usually newer versions of (kernel/glibc/libraries) add functionality and try to keep some API compatibility. Hence the chance to succeed by depending on the old but running on the new version is simply higher.
It is just unfortunate that I did not have the same luck as others. See my signature...
But what I had found out in a earlier post:
When compiling Oolite on Linux as it was suggested to me does not compile just with the libraries in the project. Other dependencies are also introduced. Should we now add them to the package? Should we simply create a .deb package that lists required libraries and their versions?
Should we create a plethora of builds so everybody can pick his poison?
I much better understand now why riding on top of a runtime (Python or Java) is so much smoother.
Sunshine - Moonlight - Good Times - Oolite
-
- Quite Grand Sub-Admiral
- Posts: 6681
- Joined: Wed Feb 28, 2007 7:54 am
Re: Changing Oolite...
I can only suggest that you study the installers of the Linux package and maybe use a VM of an older Ubuntu distro to generate the packages. Other than this very generic guidance, I'm afraid I cannot be of more help as far as Linux goes.
As for creating a plethora of builds for people to pick their poison: please no.
As for creating a plethora of builds for people to pick their poison: please no.
- Cholmondely
- Archivist
- Posts: 5364
- Joined: Tue Jul 07, 2020 11:00 am
- Location: The Delightful Domains of His Most Britannic Majesty (industrial? agricultural? mainly anything?)
- Contact:
Re: Changing Oolite...
Are you and yours all right? Surviving the snow?another_commander wrote: ↑Tue Jan 25, 2022 7:19 pmbuilds for people to pick their poison: please no.
Comments wanted:
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
•Missing OXPs? What do you think is missing?
•Lore: The economics of ship building How many built for Aronar?
•Lore: The Space Traders Flight Training Manual: Cowell & MgRath Do you agree with Redspear?
-
- Quite Grand Sub-Admiral
- Posts: 6681
- Joined: Wed Feb 28, 2007 7:54 am
Re: Changing Oolite...
Yes, thanks; it looks like we made it through this one.
- hiran
- Theorethicist
- Posts: 2403
- Joined: Fri Mar 26, 2021 1:39 pm
- Location: a parallel world I created for myself. Some call it a singularity...
Re: Changing Oolite...
If only I had an entry point. There are numerous scripts available, and the command I have so far just calls the compiler but does not create a package.another_commander wrote: ↑Tue Jan 25, 2022 7:19 pmI can only suggest that you study the installers of the Linux package and maybe use a VM of an older Ubuntu distro to generate the packages. Other than this very generic guidance, I'm afraid I cannot be of more help as far as Linux goes.
As for creating a plethora of builds for people to pick their poison: please no.
For Windows builds we directly saw NSIS being called and ending up with the desired package.
Sunshine - Moonlight - Good Times - Oolite
-
- Quite Grand Sub-Admiral
- Posts: 6681
- Joined: Wed Feb 28, 2007 7:54 am
Re: Changing Oolite...
Check out the Makefile in the source code root folder. It contains the commands executed for building both the Windows and Linux installers. You can see what options are available with
make -fMakefile help
. For the Linux builds, it appears that for e.g. a test release build (make -fMakefile pkg-posix-test
) it executes
Code: Select all
installers/posix/make_installer.sh $(HOST_ARCH) $(VER) "release" ""
make -fMakefile pkg-posix-nightly
, which in turn seems to execute
Code: Select all
installers/posix/make_installer.sh $(HOST_ARCH) $(VER) "release-snapshot" "nightly"
- hiran
- Theorethicist
- Posts: 2403
- Joined: Fri Mar 26, 2021 1:39 pm
- Location: a parallel world I created for myself. Some call it a singularity...
Re: Changing Oolite...
I tried to runanother_commander wrote: ↑Wed Jan 26, 2022 9:32 amCheck out the Makefile in the source code root folder. It contains the commands executed for building both the Windows and Linux installers. You can see what options are available withmake -fMakefile help
. For the Linux builds, it appears that for e.g. a test release build (make -fMakefile pkg-posix-test
) it executeswhile for a nightly build you would apparently have to run make with the command lineCode: Select all
installers/posix/make_installer.sh $(HOST_ARCH) $(VER) "release" ""
make -fMakefile pkg-posix-nightly
, which in turn seems to executeAgain, I am not maintaining the Linux packages, these are just some pointers to hopefully help get an installer out. In addition to the above, I would recommend studying the actual oolite.org binary installers for Linux, see what exactly they install and where, what version of glibc is packaged (if any) etc.Code: Select all
installers/posix/make_installer.sh $(HOST_ARCH) $(VER) "release-snapshot" "nightly"
Code: Select all
make -fMakefile pkg-posix-test
Code: Select all
"/usr/share/GNUstep/Makefiles/objc.make:30: objc.make is deprecated. Please use tool.make instead",
"make[1]: *** No rule to make target 'deps-'. Stop.",
"make: *** [Makefile:218: pkg-posix-test] Error 2"
Code: Select all
make -fMakefile pkg-posix-nightly
Code: Select all
"/usr/share/GNUstep/Makefiles/objc.make:30: objc.make is deprecated. Please use tool.make instead",
"make[1]: *** No rule to make target 'deps-nightly'. Stop.",
"make: *** [Makefile:224: pkg-posix-nightly] Error 2"
Last edited by hiran on Wed Jan 26, 2022 8:53 pm, edited 1 time in total.
Sunshine - Moonlight - Good Times - Oolite
-
- Quite Grand Sub-Admiral
- Posts: 6681
- Joined: Wed Feb 28, 2007 7:54 am
Re: Changing Oolite...
Are you using gnustep-base 1.20 and its associated tools? That is the version we use for the builds. It looks like you are trying to use a newer gnustep.
Edit That 'deps-' should be 'deps-release'. It looks like a parsing failure somewhere.
Edit That 'deps-' should be 'deps-release'. It looks like a parsing failure somewhere.
- hiran
- Theorethicist
- Posts: 2403
- Joined: Fri Mar 26, 2021 1:39 pm
- Location: a parallel world I created for myself. Some call it a singularity...
Re: Changing Oolite...
I just checked the line in the makefile and it looks as you suggested. But then in stdout I haveanother_commander wrote: ↑Wed Jan 26, 2022 8:47 pmAre you using gnustep-base 1.20 and its associated tools? That is the version we use for the builds. It looks like you are trying to use a newer gnustep.
Edit That 'deps-' should be 'deps-release'. It looks like a parsing failure somewhere.
Code: Select all
installers/posix/make_installer.sh 1.91.0.7444-220126-d52b6be \"release-snapshot\" \"nightly\"
edit: answering my own question...
Both Makefile and GNUmakdefile contain
Code: Select all
HOST_ARCH := $(shell echo $(GNUSTEP_HOST_CPU) | sed -e s/i.86/x86/ -e s/amd64/x86_64/ )
Code: Select all
HOST_ARCH=`uname -m | sed -e s/amd64/x86_64/`
if [ "$HOST_ARCH" = "x86_64" ]; then
export GNUSTEP_HOST=x86_64-pc-linux-gnu
export GNUSTEP_HOST_CPU=x86_64
else
export GNUSTEP_HOST=i686-pc-linux-gnu
export GNUSTEP_HOST_CPU=ix86
fi
Code: Select all
$ find / -name "*libgnustep-base*"
/usr/lib/libgnustep-base.so.1.27.0
/usr/lib/libgnustep-base.a
/usr/lib/libgnustep-base.so
/usr/lib/libgnustep-base.so.1.27
/usr/share/lintian/overrides/libgnustep-base1.27
/usr/share/doc/libgnustep-base1.27
/usr/share/doc/libgnustep-base-dev
/var/cache/apt/archives/libgnustep-base-dev_1.27.0-3_amd64.deb
/var/cache/apt/archives/libgnustep-base1.27_1.27.0-3_amd64.deb
/var/lib/dpkg/info/libgnustep-base1.27.md5sums
/var/lib/dpkg/info/libgnustep-base1.27.triggers
/var/lib/dpkg/info/libgnustep-base1.27.shlibs
/var/lib/dpkg/info/libgnustep-base1.27.list
/var/lib/dpkg/info/libgnustep-base-dev.list
/var/lib/dpkg/info/libgnustep-base-dev.md5sums
/home/vagrant/oolite/deps/Linux-deps/x86/lib/libgnustep-base.so.1.20
/home/vagrant/oolite/deps/Linux-deps/x86_64/lib/libgnustep-base.so.1.20
$
Last edited by hiran on Wed Jan 26, 2022 9:11 pm, edited 2 times in total.
Sunshine - Moonlight - Good Times - Oolite
-
- Quite Grand Sub-Admiral
- Posts: 6681
- Joined: Wed Feb 28, 2007 7:54 am
Re: Changing Oolite...
'deps-nightly' is also wrong. It should be 'deps-release-snapshot'. Clearly one argument in the command line fails to be recognized.
HOST_ARCH is defined in the Makefile as HOST_ARCH:= $(shell echo $(GNUSTEP_HOST_CPU) | sed -e s/i.86/x86/ -e s/amd64/x86_64/ )
What does this give you if you execute it in the shell? FYI, on Msys on Windows I get x86_64 as response (although I had to remove the parentheses from the env variable to get it to work).
Maybe gnustep-base 1.27 is not good for Oolite. It has certainly not been tested sufficiently, at least. 1.20 has.
HOST_ARCH is defined in the Makefile as HOST_ARCH:= $(shell echo $(GNUSTEP_HOST_CPU) | sed -e s/i.86/x86/ -e s/amd64/x86_64/ )
What does this give you if you execute it in the shell? FYI, on Msys on Windows I get x86_64 as response (although I had to remove the parentheses from the env variable to get it to work).
Maybe gnustep-base 1.27 is not good for Oolite. It has certainly not been tested sufficiently, at least. 1.20 has.
- hiran
- Theorethicist
- Posts: 2403
- Joined: Fri Mar 26, 2021 1:39 pm
- Location: a parallel world I created for myself. Some call it a singularity...
Re: Changing Oolite...
another_commander wrote: ↑Wed Jan 26, 2022 9:02 pm'deps-nightly' is also wrong. It should be 'deps-release-snapshot'. Clearly one argument in the command line fails to be recognized.
HOST_ARCH is defined in the Makefile as HOST_ARCH:= $(shell echo $(GNUSTEP_HOST_CPU) | sed -e s/i.86/x86/ -e s/amd64/x86_64/ )
What does this give you if you execute it in the shell? FYI, on Msys on Windows I get x86_64 as response (although I had to remove the parentheses from the env variable to get it to work).
Maybe gnustep-base 1.27 is not good for Oolite. It has certainly not been tested sufficiently, at least. 1.20 has.
Code: Select all
$(shell echo $(GNUSTEP_HOST_CPU) | sed -e s/i.86/x86/ -e s/amd64/x86_64/ )
However the definition I found in oolite.src:
Code: Select all
$ uname -m | sed -e s/amd64/x86_64/
x86_64
$
My gut feeling is we might be better off to recreate the build system based on up to date libraries, then look into issues in the Oolite code itself.
Sunshine - Moonlight - Good Times - Oolite
-
- Quite Grand Sub-Admiral
- Posts: 6681
- Joined: Wed Feb 28, 2007 7:54 am
Re: Changing Oolite...
Whoa! This is not OK. GNUSTEP_HOST_CPU should be defined before the build starts, as well as a bunch of other gnustep environment variables. You are probably missing a step somewhere. Please check - on Windows we are running /mingw/../devlibs/gnustep1201/System/Library/Makefiles/GNUstep.sh inside the profile file. Make sure that this Makefiles/GNUstep.sh script runs before you start the build.hiran wrote: ↑Wed Jan 26, 2022 9:14 pmgives nothing as $(GNUSTEP_HOST_CPU) is undefined.Code: Select all
$(shell echo $(GNUSTEP_HOST_CPU) | sed -e s/i.86/x86/ -e s/amd64/x86_64/ )
If you want to recreate the build system from scratch be my guest. But I cannot help you with that.
- hiran
- Theorethicist
- Posts: 2403
- Joined: Fri Mar 26, 2021 1:39 pm
- Location: a parallel world I created for myself. Some call it a singularity...
Re: Changing Oolite...
Well, I will not be able to recreate the build system alone.another_commander wrote: ↑Wed Jan 26, 2022 9:17 pmWhoa! This is not OK. GNUSTEP_HOST should be defined before the build starts, as well as a bunch of other gnustep environment variables. You are probably missing a step somewhere. Please check - on Windows we are running /mingw/../devlibs/gnustep1201/System/Library/Makefiles/GNUstep.sh inside the profile file. Make sure that this Makefiles/GNUstep.sh script runs before you start the build.hiran wrote: ↑Wed Jan 26, 2022 9:14 pmgives nothing as $(GNUSTEP_HOST_CPU) is undefined.Code: Select all
$(shell echo $(GNUSTEP_HOST_CPU) | sed -e s/i.86/x86/ -e s/amd64/x86_64/ )
If you want to recreate the build system from scratch be my guest. But I cannot help you with that.
The first variable is getting set in
./deps/Linux-deps/oolite.src
Is that one called automatically? Would I have to call it? I will add a call before running make...
Sunshine - Moonlight - Good Times - Oolite