48a924c561
The libredox 0.1.19 / redox_syscall 0.9.1 bump left 45 recipe lockfiles pinning libredox 0.1.18+rb0.3.1 and redox_syscall 0.9.0+rb0.3.1. The cookbook builds with --locked, so every affected recipe died with error: cannot update the lock file .../Cargo.lock because --locked was passed to prevent this which is what took out redox-driver-sys -- and with it every Red Bear driver -- during the redbear-full build. Regenerating the fork lockfiles was not enough; the recipes that consume the forks as path deps carry their own. This is step 6 of local/docs/FORK-BUMP-PATCHING-POLICY.md applied to the recipe layer. Also drop the hardcoded GCC version in recipes/libs/libstdcxx-v3: the literal include/c++/13.2.0 stopped resolving the moment the cross toolchain moved to 16.1.0, leaving -I pointing at a directory that does not exist. Now resolves the newest installed C++ header directory and fails loudly if there is none. Same failure class as the hardcoded 13.2.0 in mk/prefix.mk. Note: a few recipe-level Cargo.lock files (redox-driver-pci, cpufreqd, redbear-acmd/-ecmd/-ftdi) sit beside a recipe.toml whose [source] is path = "source", so they are not build inputs; redox-driver-pci's even references a redox-driver-core/Cargo.toml that does not exist. They are left alone rather than given meaning they do not have. redox-driver-sys now cooks clean.
61 lines
1.7 KiB
Plaintext
61 lines
1.7 KiB
Plaintext
# _LT_LANG_GCJ_CONFIG([TAG])
|
|
# --------------------------
|
|
# Ensure that the configuration variables for the GNU Java Compiler compiler
|
|
# are suitably defined. These variables are subsequently used by _LT_CONFIG
|
|
# to write the compiler configuration to `libtool'. Locally modified to
|
|
# run its tests on C programs, because we cannot link Java programs until
|
|
# we have finished building libjava.
|
|
AC_DEFUN([_LT_LANG_GCJ_CONFIG],
|
|
[AC_REQUIRE([LT_PROG_GCJ])dnl
|
|
AC_LANG_SAVE
|
|
|
|
# Source file extension for Java test sources.
|
|
ac_ext=c
|
|
|
|
# Object file extension for compiled Java test sources.
|
|
objext=o
|
|
_LT_TAGVAR(objext, $1)=$objext
|
|
|
|
# Code to be used in simple compile tests
|
|
lt_simple_compile_test_code="int some_variable = 0;"
|
|
|
|
# Code to be used in simple link tests
|
|
lt_simple_link_test_code='int main(){return(0);}'
|
|
|
|
# ltmain only uses $CC for tagged configurations so make sure $CC is set.
|
|
_LT_TAG_COMPILER
|
|
|
|
# save warnings/boilerplate of simple test code
|
|
_LT_COMPILER_BOILERPLATE
|
|
_LT_LINKER_BOILERPLATE
|
|
|
|
# Allow CC to be a program name with arguments.
|
|
GCC=yes
|
|
compiler=$CC
|
|
_LT_TAGVAR(compiler, $1)=$CC
|
|
_LT_CC_BASENAME([$compiler])
|
|
|
|
# GCJ did not exist at the time GCC didn't implicitly link libc in.
|
|
_LT_TAGVAR(archive_cmds_need_lc, $1)=no
|
|
|
|
_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
|
|
|
|
## CAVEAT EMPTOR:
|
|
## There is no encapsulation within the following macros, do not change
|
|
## the running order or otherwise move them around unless you know exactly
|
|
## what you are doing...
|
|
if test -n "$compiler"; then
|
|
_LT_COMPILER_NO_RTTI($1)
|
|
_LT_COMPILER_PIC($1)
|
|
_LT_COMPILER_C_O($1)
|
|
_LT_COMPILER_FILE_LOCKS($1)
|
|
_LT_LINKER_SHLIBS($1)
|
|
_LT_LINKER_HARDCODE_LIBPATH($1)
|
|
|
|
_LT_CONFIG($1)
|
|
fi
|
|
|
|
_LT_TAGVAR(compiler, $1)=${GCJ-gcj}
|
|
AC_LANG_RESTORE
|
|
])# _LT_LANG_GCJ_CONFIG
|