This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run on top of https://github.com/fosslinux/live-bootstrap/pull/469 (known good commit: 1296c44bb345ef5d54ecffd7688f9813d46a032a) | |
# NOTE: this doesn't really work as a shell script for now, | |
# it's more of a list of command blocks to execute by copy-pasting into a terminal | |
# Bare metal example shown here, see live-bootstrap documentation for other modes such as qemu | |
# On host machine (needs Python 3.8 or newer) | |
git clone https://github.com/fosslinux/live-bootstrap | |
cd live-bootstrap | |
git fetch origin pull/469/head:azurelinux |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"NandGame:Levels:ASSEMBLER1": { | |
"code": "# Assembler code \nD = 1\nLABEL loop\nA = 0x7FFF\n*A = D\n*A = D + 1\nA = loop\nJMP\n" | |
}, | |
"NandGame:CustomComponent:3": { | |
"key": "3", | |
"name": "shl 8", | |
"inputs": [], | |
"outputs": [], | |
"diagram": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Run this with guix time-machine --commit=c5e63e1 -- build --system=i686-linux -f haskell.scm | |
;;; --system=x86_64-linux is currently broken | |
;;; GNU Guix --- Functional package management for GNU | |
;;; Copyright © 2015, 2016 Federico Beffa <beffa@fbengineering.ch> | |
;;; Copyright © 2015 Siniša Biđin <sinisa@bidin.eu> | |
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org> | |
;;; Copyright © 2015, 2019 Eric Bavier <bavier@member.fsf.org> | |
;;; Copyright © 2016, 2018, 2019, 2021 Ludovic Courtès <ludo@gnu.org> | |
;;; Copyright © 2016, 2017 Nikita <nikita@n0.is> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./TestRustcBootstrap.sh | |
=== Building stage0 rustc (with libstd) | |
make: Entering directory '/home/googulator/mrustc/run_rustc' | |
cp ../output-1.74.0/rustc output-1.74.0/prefix-s/bin/rustc | |
cp ../output-1.74.0/rustc output-1.74.0/prefix-2/bin/rustc | |
cp ../output-1.74.0/cargo output-1.74.0/prefix/bin/cargo | |
[create] output-1.74.0/prefix/cargo_home/config | |
[MINICARGO] ../rustc-1.74.0-src/library/std > output-1.74.0/prefix-s/lib/rustlib/x86_64-unknown-linux-gnu/lib/ | |
mkdir -p output-1.74.0/prefix-s/lib/rustlib/x86_64-unknown-linux-gnu/lib/ | |
warning: ../rustc-1.74.0-src/vendor/object/Cargo.toml:33: Unknown key `resolver` in [package] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# Source the environment: | |
. /steps/bootstrap.cfg | |
. /steps/env | |
. /steps/helpers.sh | |
# enable the loopback interface, which guix needs | |
ip link set lo up |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1 "parse.c" | |
# 74 "parse.c" | |
# 1 "flexdef.h" 1 | |
# 37 "flexdef.h" | |
# 1 "/usr/include/stdio.h" 1 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEST = . | |
HDRS = defs.h | |
CFLAGS = -O -DNDEBUG | |
LDFLAGS = | |
LIBS = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim:set textwidth=0: | |
# This guide uses live-bootstrap instead of the old chain | |
# Modified from https://mid-kid.root.sx/git/mid-kid/bootstrap/src/branch/master/gentoo-2024/gentoo.txt | |
# NOTE: Not really a shell script, only named .sh for syntax highlighting | |
# live-bootstrap version: 60ec9ea80ceddd9f7394c2f595fce879ef073009 (Sun Feb 18 17:34:12 2024 +0100) | |
# LFS version: 12.0 | |
# Gentoo version: 20240201 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/seed/seed.kaem b/seed/seed.kaem | |
index 68ae36a..b95242f 100755 | |
--- a/seed/seed.kaem | |
+++ b/seed/seed.kaem | |
@@ -30,6 +30,7 @@ cp /${ARCH_DIR}/bin/sha256sum ${BINDIR}/sha256sum | |
cp /${ARCH_DIR}/bin/unbz2 ${BINDIR}/unbz2 | |
cp /${ARCH_DIR}/bin/ungz ${BINDIR}/ungz | |
cp /${ARCH_DIR}/bin/untar ${BINDIR}/untar | |
+cp /${ARCH_DIR}/bin/unxz ${BINDIR}/unxz | |
cp /${ARCH_DIR}/bin/cp ${BINDIR}/cp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/M2libc b/M2libc | |
index de7c75f..479d53d 160000 | |
--- a/M2libc | |
+++ b/M2libc | |
@@ -1 +1 @@ | |
-Subproject commit de7c75f144176c3b9be77695d9bf94440445aeae | |
+Subproject commit 479d53d78cb46f2da6efdad18e1cc87a46cce097 |
NewerOlder