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 180 if test "$assembly" = yes; then 181 181 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" 182 182 else 183 183 report $cc $src $3 $dflag -std=c11 -isystem "$to" -isystem "$gen" -isystem "arch/$target" -isystem "$PWD" -ffreestanding -nostdlib "-L$to" "-o$output" 184 184 fi 185 185 } 186 186 187 -say "commencing libk build $build at $(timestamp)" 187 +say "commencing libk build $build at $(timestamp) for $target" 188 188 # set -x 189 189 190 190 # get type data 191 191 mkdir -p $gen 192 192 report $cc -D_emit_m4_include arch/typesize.c -o $gen/typesize 193 193 $gen/typesize > gen/typesize.m 194 194