Overview
Comment: | add target display |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ebe506a75e044ca1cf2361ec610f447b |
User & Date: | lexi on 2020-03-03 18:10:27 |
Other Links: | manifest | tags |
Context
2020-03-04
| ||
00:03 | add Arch Build System build script check-in: c231d33808 user: lexi tags: trunk | |
2020-03-03
| ||
18:10 | add target display check-in: ebe506a75e user: lexi tags: trunk | |
17:58 | target appropriate manpage section; rename boot.o to properly namespaced kboot.o; misc fixes check-in: ef45f6d08e user: lexi tags: trunk | |
Changes
Modified build.sh from [dcf2a949b3] to [ffa7b27e51].
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
if test "$assembly" = yes; then report $cc $src $3 $dflag -std=c11 -isystem "$to" -isystem "$gen" -isystem "arch/$target" -isystem "$PWD" -ffreestanding -nostdlib "-L$to" -masm=intel -fverbose-asm -S "-o$output.s" else report $cc $src $3 $dflag -std=c11 -isystem "$to" -isystem "$gen" -isystem "arch/$target" -isystem "$PWD" -ffreestanding -nostdlib "-L$to" "-o$output" fi } say "commencing libk build $build at $(timestamp)" # set -x # get type data mkdir -p $gen report $cc -D_emit_m4_include arch/typesize.c -o $gen/typesize $gen/typesize > gen/typesize.m |
| |
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
if test "$assembly" = yes; then
report $cc $src $3 $dflag -std=c11 -isystem "$to" -isystem "$gen" -isystem "arch/$target" -isystem "$PWD" -ffreestanding -nostdlib "-L$to" -masm=intel -fverbose-asm -S "-o$output.s"
else
report $cc $src $3 $dflag -std=c11 -isystem "$to" -isystem "$gen" -isystem "arch/$target" -isystem "$PWD" -ffreestanding -nostdlib "-L$to" "-o$output"
fi
}
say "commencing libk build $build at $(timestamp) for $target"
# set -x
# get type data
mkdir -p $gen
report $cc -D_emit_m4_include arch/typesize.c -o $gen/typesize
$gen/typesize > gen/typesize.m
|