diff options
| author | Eugen Wissner <belka@caraus.de> | 2025-05-08 00:13:07 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2025-05-08 00:13:07 +0200 |
| commit | 3f11d63a0f86191f010bc0093ee8616c154d9a1b (patch) | |
| tree | 24b2412bab652d6580c77f518806c7bfc1172f94 /rakelib | |
| parent | 40701008f04f2242ab69bfb4bc4f376e6b75429a (diff) | |
| download | elna-3f11d63a0f86191f010bc0093ee8616c154d9a1b.tar.gz | |
Add builtin symbols
Diffstat (limited to 'rakelib')
| -rw-r--r-- | rakelib/cross.rake | 14 | ||||
| -rw-r--r-- | rakelib/stage.rake | 10 |
2 files changed, 8 insertions, 16 deletions
diff --git a/rakelib/cross.rake b/rakelib/cross.rake index f90bb84..b390590 100644 --- a/rakelib/cross.rake +++ b/rakelib/cross.rake @@ -309,17 +309,6 @@ namespace :cross do sh env, 'make', '-j', Etc.nprocessors.to_s, chdir: cwd.to_path sh env, 'make', 'install', chdir: cwd.to_path end - - task :init, [:target] do |_, args| - options = find_build_target GCC_VERSION, args - env = { - 'PATH' => "#{options.rootfs.realpath + 'bin'}:#{ENV['PATH']}" - } - sh env, 'riscv32-unknown-linux-gnu-gcc', - '-ffreestanding', '-static', - '-o', (options.tools + 'init').to_path, - 'tools/init.c' - end end desc 'Build cross toolchain' @@ -329,7 +318,6 @@ task cross: [ 'cross:headers', 'cross:kernel', 'cross:glibc', - 'cross:gcc2', - 'cross:init' + 'cross:gcc2' ] do end diff --git a/rakelib/stage.rake b/rakelib/stage.rake index 80f704d..6f61cae 100644 --- a/rakelib/stage.rake +++ b/rakelib/stage.rake @@ -21,16 +21,20 @@ def assemble_stage(output, compiler, source) end end +library = [] + Dir.glob('boot/*.s').each do |assembly_source| - target_object = Pathname.new('build/boot') + Pathname.new(assembly_source).basename.sub_ext('.o') + source_basename = Pathname.new(assembly_source).basename + target_object = Pathname.new('build/boot') + source_basename.sub_ext('.o') file target_object.to_s => [assembly_source, 'build/boot'] do |t| sh CROSS_GCC, '-c', '-o', t.name, assembly_source end + library << assembly_source unless source_basename.to_s.start_with? 'stage' end desc 'Initial stage' -file 'build/boot/stage1' => ['build/boot/tokenizer.o', 'build/boot/stage1.o', 'build/boot/common-boot.o'] do |t| +file 'build/boot/stage1' => ['build/boot/stage1.o', *library] do |t| sh CROSS_GCC, '-nostdlib', '-o', t.name, *t.prerequisites end @@ -43,7 +47,7 @@ file 'build/boot/stage2a.s' => ['build/boot/stage1', 'boot/stage2.elna'] do |t| end ['build/boot/stage2a', 'build/boot/stage2b'].each do |exe| - file exe => [exe.ext('.s'), 'build/boot/common-boot.o'] do |t| + file exe => [exe.ext('.s'), *library] do |t| sh CROSS_GCC, '-nostdlib', '-o', t.name, *t.prerequisites end end |
