Merge branch 'lazy-reproducible-builds'
We have "lazy reproducible builds" now. What I mean by that is, that the resulting "apk" archive is not fully reproducible, but all binaries inside it are. This is necessary to kick-off the binary repo, which is in turn required to get the testsuite going on Travis. Read #64 for more information. Usage: ``` pmbootstrap build hello-world --buildinfo pmbootstrap challenge /tmp/path/to/hello-world-1-r2.apk ``` The "--buildinfo" parameter generates a "buildinfo.json", which contains the versions of all dependencies. It is not very optimizied, so this is a performance bottleneck and takes 10 seconds (which is quite much considering that the hello-world package builds in less than a second). This can be improved in the future, and then the buildinfo parameter may become the default.
This commit is contained in:
commit
5d4f279362
1 changed files with 1 additions and 0 deletions
|
@ -44,6 +44,7 @@ build() {
|
||||||
--enable-ld=default \
|
--enable-ld=default \
|
||||||
--enable-gold=yes \
|
--enable-gold=yes \
|
||||||
--enable-plugins \
|
--enable-plugins \
|
||||||
|
--enable-deterministic-archives \
|
||||||
--disable-multilib \
|
--disable-multilib \
|
||||||
--disable-werror \
|
--disable-werror \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
|
Loading…
Reference in a new issue