mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-08 09:35:15 +00:00
- 1.8.2 for now, newer versions need high-res timestamp file APIs which serenity doesn't have yet - pselect() instead of ppoll() for now, same reason (depends on #2609) - no good default for -j yet (see nproc.patch) - `-l` probably doesn't work yet (see loadavg.patch), but I've never used that anyways - some minor include patches that I've also sent upstream Other than that, this seems to work reasonably well. It currently produces some spam on stdout from probably the shell.
14 lines
346 B
Diff
14 lines
346 B
Diff
diff --git a/configure.py b/configure.py
|
|
index a443748..064e9df 100755
|
|
--- a/configure.py
|
|
+++ b/configure.py
|
|
@@ -657,7 +657,7 @@ n.build('all', 'phony', all_targets)
|
|
n.close()
|
|
print('wrote %s.' % BUILD_FILENAME)
|
|
|
|
-if options.bootstrap:
|
|
+if options.bootstrap and False:
|
|
print('bootstrap complete. rebuilding...')
|
|
|
|
rebuild_args = []
|