Jenkins build is back to normal : osv-build #1166

2016-12-25 Thread avi
See -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[COMMIT osv master] aarch64: fix compilation on gcc 6

2016-12-25 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master aarch64: fix compilation on gcc 6 Gcc 6 doesn't like the member "x" being redefined, and starts complaining about its visibility. If it's just a shortcut we want, let's just use auto& and not a

[COMMIT osv master] makefile: remove space from cross-compilation prefix

2016-12-25 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master makefile: remove space from cross-compilation prefix The spaces in $(if ...) are not ignored - they result in a space in the beginning of the CROSS_PREFIX variable. This is mostly harmless, except

Re: Unknown response code: connection refused

2016-12-25 Thread Nadav Har'El
On Thu, Dec 22, 2016 at 7:29 PM, Nadav Har'El wrote: > > > I think do_main_thread() needs to be fixed to wait for all non-detached > applications (app->join() all the apps which are not detached), and not > just the last one, before the app->request_termination() loop... >

Re: [PATCH] dhcp: do not release assigned IP just to update DNS name

2016-12-25 Thread Nadav Har'El
In general, I think this is the right direction, but there's something I am not sure I understand: It seems to me that the old code had a loop checking that the new DHPC request worked. The current code, doesn't it just send the updated DHCP request once, and forgets about it? It doesn't wait for

[COMMIT osv master] build: possibly use cross-compilation strip

2016-12-25 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master build: possibly use cross-compilation strip In the previous patch, scripts/mkbootfs.py started to use 'strip'. However, this is run from the Makefile which allows cross-compilation, and in that

Re: [PATCH v2 2/2] mkbootfs.py: strip binaries

2016-12-25 Thread Nadav Har'El
Hi, after a very long delay, I finally committed your two stripping patches, with a few changes (especially to make sure that the same *-stripped.so doesn't get picked up again and re-stripped). -- Nadav Har'El n...@scylladb.com On Mon, May 23, 2016 at 11:09 PM, Yuri Volchkov

[COMMIT osv master] build: strip binaries in bootfs as well

2016-12-25 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master build: strip binaries in bootfs as well Before this patch, mkbootfs.py, unlike upload_manifest.py, did not do stripping. This was leading to unnecessary inflating of the bootfs. With this patch,

[COMMIT osv master] build: strip binaries in modules/ dir as well

2016-12-25 Thread Commit Bot
From: Nadav Har'El Committer: Nadav Har'El Branch: master build: strip binaries in modules/ dir as well upload_manifest.py stripped only binaries in the build/ directory, so binaries in modules, such as modules/httpserver/libhttpserver.so were not

[PATCH] strip binaries in modules/ dir as well

2016-12-25 Thread Nadav Har'El
upload_manifest stripped only binaries in the build/ directory, so binaries in modules, such as modules/httpserver/libhttpserver.so were not stripped. Arguably, each module's Makefile could strip its own results, but it's convenient to keep both the unstripped binary (for debugging) and stripped