-
Notifications
You must be signed in to change notification settings - Fork 27
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
Use GNU make for building #6
Conversation
Note that this is just a basis for discussion, and not yet tested very well. What I'm unsure about is how protocol selection in main() should work. I tried to make the change backward-compatible, but it seems to me that this yields a suboptimal result. There are further things that could be tweaked building upon this change, if you decide this a valid approach. This is also intended to be the basis for providing "official" Debian packaging, which needs a bit more buildsystem flexibility. |
d82f414
to
0f3910c
Compare
This replaces the shell scripts used for building with a GNU make file. The change also includes slight refactorings of the code, as to make the protocol selection more flexible. The main changes, build-system and from a user perspective are: - Removed the distinction between "combined binary" and per-protocol binary. You can now build a multi-protocol binary by setting the make variable PROTOCOLS. If you specify only one protocol, you will achieve the same effect as using a protocol-specific binary with the old build system. By default, all protocols will be built. - The Debian ifupdown support is now built in, using the command line --ifupdown switch. It didn't seem worth it keeping the conditional build support for that little code. - The debian directory is intentionally not included in the source tarball. This is recommended to upstreams by Debian to make packing easier inside Debian. - Instead of generating the NaCl and libsodium shim headers, the correct set of headers is selected via a preprocessor macro defined by the makefile. - Removed the NaCl auto-build support. Users will have to install either NaCl or libsodium themselves. Fetching binaries over http without verifying checksums or the like didn't seem such a good idea anyway. The following code changes were made to facilitate the above: - Extract parts of common.c into a header file "common.h". - Create a new file protos.c, containing the list of included protocols and a simple by-name lookup function. - Move run.combined.c to main.c, and eliminate the per-protocol main functions. The single-protocol-binary case is subsumed by the slightly extended main() residing in main.c.
Note that I had a better idea than adding the --ifupdown switch: the ifupdown script starting quicktun can just set the environment variables as the vanilla (non-Debian) quicktun expects them. I'll adapt the change accordingly. |
It would also help to know what the original intention of compiling per-protocol binaries was. Is it about binary size, reducing code complexity, and hence attack surface? I could surely adapt this PR to build the single-protocol binaries again, but I I'd like to understand the motivation for them first. |
I do like backwards compatibility. When possible I prefer to put unrelated changes in separate commits.
I would also like to keep the build.sh script around for now. It could be simplified with some of your changes, and it could live side by side with the makefile. |
OK, I'll try to split the buildsystem PR into multiple commits, and also
OK, I'll try to accomodate this. I think setting PROTOCOL and not having
I didn't like the hard-coded list much myself, but it seemed preferable What do you think about having a --list-options switch (or something
See https://wiki.debian.org/UpstreamGuide (section "Pristine Upstream Renaming the directory would help, indeed. Albeit, I'll revert that
Ah, I didn't think of that. I'll add the possibility of "CRYPTLIB =
I'd recommend not doing that, for the reasons also mentioned in the
Makes sense.
I'm OK with that, but it means an added maintainance burden, if |
I'll close this PR now, it will be superseded by a series of more self-contained, PRs. |
This replaces the shell scripts used for building with a GNU make
file. The change also includes slight refactorings of the code, as to
make the protocol selection more flexible.
The main changes, build-system and from a user perspective are:
binary. You can now build a multi-protocol binary by setting the make
variable PROTOCOLS. If you specify only one protocol, you will achieve
the same effect as using a protocol-specific binary with the old build
system. By default, all protocols will be built.
--ifupdown switch. It didn't seem worth it keeping the conditional
build support for that little code.
tarball. This is recommended to upstreams by Debian to make packing
easier inside Debian.
set of headers is selected via a preprocessor macro defined by the
makefile.
NaCl or libsodium themselves. Fetching binaries over http without
verifying checksums or the like didn't seem such a good idea anyway.
The following code changes were made to facilitate the above:
and a simple by-name lookup function.
functions. The single-protocol-binary case is subsumed by the slightly
extended main() residing in main.c.