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

Improve cross-platform compatibility of the build system #24

Merged
merged 3 commits into from
May 16, 2023

Conversation

DarkKirb
Copy link
Contributor

@DarkKirb DarkKirb commented May 9, 2023

Currently building uplink-c fails on NixOS, but seemingly also MacOS (#19) and *BSD (unreported).

This is because of two reasons:

  • The scripts and the makefile hardcode bash’s location as /bin/bash
  • The scripts depend on a bash feature that macos’s /bin/bash binary does not support (they ship zsh instead of bash)

I ported the scripts to POSIX shell, which should work on most recent UNIX-like operating systems.

Additionally, I addressed some potential portability concerns:

  • Based on the BSDmakefile, the Makefile is only for GNU Make. I therefore renamed it to GNUmakefile, the native name of the makefile in GNU Make. I removed BSDmakefile, as now it will no longer attempt to use the broken Makefile. This should also affect other (legacy?) systems that use OMake for example
  • Made the install-test script support systems where make isn’t gnu make (like BSD for example), as well as systems that do not have gcc as a compiler.

Fixes #19
Closes #20

@DarkKirb DarkKirb force-pushed the remove-linuxisms branch 2 times, most recently from 1975aa2 to 1a09356 Compare May 9, 2023 06:49
DarkKirb and others added 3 commits May 10, 2023 12:28
GNU Make (which this project seemingly requires) reads GNUmakefile,
then falls back to Makefile. Makefile is for POSIX Make.

This also removes the now useless BSDmakefile, as Makefile no longer
exists.
bash tends to not be available in /bin on non-GNU/Linux systems.

Additionally the version of “bash” (zsh) macOS ships does not support
the globstar option.

Fixes storj#19
Closes storj#20

Altered from halkyon’s comment, as find requires a directory on non-GNU

Co-Authored-By: Sean Harvey <halkyon@gmail.com>
Most of the scripts are just POSIX compatible shell scripts,
sometimes with minor modifications

in test-install, it tries to find GNU Make instead of using make (which
is POSIX make)

It also uses cc (the system compiler) instead of gcc which might not be
available.
Copy link
Member

@egonelbre egonelbre left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good.

Maybe you want to rebase yourself such that your commit signatures are preserved? But, I can also merge without that.

@egonelbre egonelbre merged commit b7f83f9 into storj:main May 16, 2023
@egonelbre
Copy link
Member

I merged as is, thank you for the contribution.

eopb added a commit to eopb/uplink-rust that referenced this pull request Jul 24, 2023
NixOS doesn't have `#!/bin/bash`. Bash can be on all Linuxes with `#!/usr/bin/env bash` so it's better to use that shebang.

This doesn't actually enable building on NixOS since `uplink-c` also needs upgrading to a version that doesn't use `#!/bin/bash`: storj/uplink-c#24 storj-thirdparty#49
eopb added a commit to eopb/uplink-rust that referenced this pull request Jul 25, 2023
NixOS doesn't have `#!/bin/bash`. Bash can be on all Linuxes with `#!/usr/bin/env bash` so it's better to use that shebang.

This doesn't actually enable building on NixOS since `uplink-c` also needs upgrading to a version that doesn't use `#!/bin/bash`: storj/uplink-c#24 storj-thirdparty#49
eopb added a commit to eopb/uplink-rust that referenced this pull request Jul 25, 2023
NixOS doesn't have `#!/bin/bash`. Bash can be found on all Linuxes with
`#!/usr/bin/env bash` so it's better to use that shebang.

This doesn't actually enable building on NixOS since `uplink-c` also
needs upgrading to a version that doesn't use `#!/bin/bash`. This was done in
storj/uplink-c#24

related storj-thirdparty#49
ifraixedes pushed a commit to storj-thirdparty/uplink-rust that referenced this pull request Jul 25, 2023
NixOS doesn't have `#!/bin/bash`. Bash can be found on all Linuxes with
`#!/usr/bin/env bash` so it's better to use that shebang.

This doesn't actually enable building on NixOS since `uplink-c` also
needs upgrading to a version that doesn't use `#!/bin/bash`. This was done in
storj/uplink-c#24

related #49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

make build fails on MacOS
4 participants