mirror of
https://github.com/deadw00d/AROS.git
synced 2025-12-07 22:14:08 +00:00
git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@40564 fb15a70f-31f2-0310-bbcc-cdcc74a49acc
8 lines
376 B
Bash
Executable File
8 lines
376 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This is wrapper around AROS-targetted compiler needed to create non-relocatable ELF files.
|
|
# It is required to build bootstraps for native AROS.
|
|
# The difference is that it uses different spec file, with different linker.
|
|
|
|
exec @orig_target_cc@ -specs=@AROS_BUILDDIR@/bin/@aros_target_arch@-@aros_target_cpu@@aros_target_suffix@/gen/config/elf-specs "$@" -static
|