libbuild2-autoconf/0.4.0-a.0.20250910094552.e8631eeb8905

[brief]

Autoconf emulation build system module for build2

GNU Autoconf emulation build system module for build2.

Specifically, this module provides an in-based rule for processing config.h.in files. Besides the Autoconf special line flavor (#undef), it also supports the CMake (#cmakedefine, #cmakedefine01) and Meson (#mesondefine) variants. Note that the CMake ${VAR} style substitutions are not supported, only the @VAR@ style (see Modifying upstream source code during build for one way to deal with ${VAR}).

Similar to Autoconf, this module provides builtin support for a number of common HAVE_* configuration checks with projects being able to add custom ones. However, the values of these checks are not discovered by dynamic probing, such as trying to compile a test program to determine if the feature is present. Instead, they are set to static expected values based on the platform/compiler macro checks (see note at the beginning of Project Configuration for rationale).

See libbuild2/autoconf/checks/ for the list of available builtin checks. Submit requests for new checks as issues. Submit implementations of new checks (or any other improvements) as PRs or patches.

Using in your projects

This module is part of the standard pre-installed build2 modules and no extra integration steps are required other than the using directive in your buildfile. For example, for Autoconf config.h.in:

using autoconf

h{config}: in{config}

Or for CMake config.h.cmake:

using autoconf

h{config}: in{config.h.cmake}

The default flavor is autoconf but if the input file has the .cmake or .meson extension, then the cmake or meson flavors are selected automatically. If, however, the standard config.h.in file is re-used for CMake/Meson, then the flavor must be specified explicitly with the autoconf.flavor variable, for example:

using autoconf

h{config}: in{config}
{
  autoconf.flavor = meson
}

Besides the configuration checks, custom substitutions can be specified as buildfile variables or key-value pairs in the same way as with the in module. For example, as buildfile variables:

/* config.h.in */

#define PACKAGE_NAME @PACKAGE_NAME@
#define PACKAGE_VERSION @PACKAGE_VERSION@

#undef HAVE_STRLCPY
#undef HAVE_STRLCAT
h{config}: in{config}
{
  PACKAGE_NAME = $project
  PACKAGE_VERSION = $version
}

Or as key-value pairs in the autoconf.substitutions map (which is an alias for the in.substitutions variable; see the in module for details):

/* config.h.in */

#undef _GNU_SOURCE
#undef _POSIX_SOURCE
gnu_source = ($c.stdlib == 'glibc')
posix_source = ($c.target.class != 'windows' && !$gnu_source)

h{config}: in{config}
{
  autoconf.substitutions  = _GNU_SOURCE@$gnu_source
  autoconf.substitutions += _POSIX_SOURCE@$posix_source
}

In particular, the autoconf.substitutions mechanism is the only way to have substitutions that cannot be specified as buildfile variables because they start with an underscore (and thus are reserved, as in the above example) or refer to one of the predefined variables.

The custom substitutions can also be used to override the checks, for example:

h{config}: in{config}
{
  HAVE_STRLCPY = true
}

While this module provides widely used aliases for some checks, it doesn't attempt to cover every project's idiosyncrasies. Instead, it provides a mechanism for creating project-specific aliases for builtin checks. Specifically, the desired aliases can be specified as key-value pairs in the autoconf.aliases map with the key being the new name and the value -- old/existing. For example:

/* config.h.in */

#undef HAVE_AF_UNIX_H
#undef MY_SSIZE_T
h{config}: in{config}
{
  autoconf.aliases  = HAVE_AF_UNIX_H@HAVE_AFUNIX_H
  autoconf.aliases += MY_SSIZE_T@ssize_t
}

The checks can be prefixed in order to avoid clashes with similarly named macros in other headers. This is an especially good idea if the resulting header is public. To enable this, we specify the prefix with the autoconf.prefix variable and then use the prefixed versions of the checks in the config.h.in file. For example:

/* config.h.in */

#undef LIBFOO_HAVE_STRLCPY
#undef LIBFOO_HAVE_STRLCAT
h{config}: in{config}
{
  autoconf.prefix = LIBFOO_
}

Note that autoconf.prefix only affects the lookup of the checks in the catalogs (project and builtin). Custom substitutions and overrides of checks must include the prefix. Similarly, both names in autoconf.aliases must be specified with the prefix (unless unprefixable; see below). For example:

h{config}: in{config}
{
  autoconf.prefix = LIBFOO_

  LIBFOO_HAVE_STRLCPY = true

  autoconf.aliases = LIBFOO_SSIZE_T@ssize_t
}

Note also that some check names are unprefixable, usually because they are standard macro names (for example, BYTE_ORDER) that on some platforms come from system headers (for example, <sys/endian.h> on FreeBSD). Such checks have ! after their names on the first line of their implementation files (for example, // BYTE_ORDER!).

An implementation of a check may depend on another check. As a result, substitutions should not be conditional at the preprocessor level (unless all the checks are part of the same condition). Nor should the results of checks be adjusted until after the last check. For example:

#ifndef _WIN32
#  cmakedefine HAVE_EXPLICIT_BZERO // Conditional substitution.
#endif

#cmakedefine HAVE_EXPLICIT_MEMSET  // Shares implementation with BZERO.

#cmakedefine BYTE_ORDER

#if BYTE_ORDER == LITTLE_ENDIAN
#  undef BYTE_ORDER               // Adjusting the result.
#endif

#cmakedefine WORDS_BIGENDIAN      // Based on BYTE_ORDER.

Below is the correct way to achieve the above semantics:

#cmakedefine HAVE_EXPLICIT_BZERO
#cmakedefine HAVE_EXPLICIT_MEMSET

#cmakedefine BYTE_ORDER
#cmakedefine WORDS_BIGENDIAN

#ifdef _WIN32
#  undef HAVE_EXPLICIT_BZERO
#endif

#if BYTE_ORDER == LITTLE_ENDIAN
#  undef BYTE_ORDER
#endif

Communicating check results to buildfiles

The results of the checks are represented as preprocessor macros and are normally used in source files. However, sometimes we may need these results to be available in buildfiles. For example, we may need them to decide whether to use a certain compiler option or to exclude certain source files from the build.

The results of the checks can be communicated to buildfiles by combining two build2 mechanisms: the c.predefs rule, which allows us to extract macro values from header files, and the update directive, which allow us to update a target while loading a buildfile. Specifically, we can extract macro values from the autoconf-generated header into a buildfile fragment (or a JSON file) and then include this fragment (or load this JSON file) into our buildfile.

As an example, let's make the value of the BYTE_ORDER macro available in our buildfile in order to decide which source file to include into the build. First we prepare byte-order.h.in:

/* byte-order.h.in */

#undef BYTE_ORDER

#if BYTE_ORDER == LITTLE_ENDIAN
#  define BYTE_ORDER_LITTLE_ENDIAN true
#elif BYTE_ORDER == BIG_ENDIAN
#  define BYTE_ORDER_LITTLE_ENDIAN false
#else
#  error unexpected byte order
#endif

Then we load the c.predefs submodule after c in our root.build:

# root.build
#
using c
using c.predefs

Finally, at the beginning of our buildfile we add the following fragment:

# Detect target endianness.
#
using autoconf

h{byte-order}: in{byte-order}

[rule_hint=c.predefs] buildfile{byte-order}: h{byte-order}
{
  c.predefs.poptions = false
  c.predefs.macros = BYTE_ORDER_LITTLE_ENDIAN@little_endian
}

./: buildfile{byte-order} # Make sure it gets cleaned.

if ($build.meta_operation == 'perform')
{
  update buildfile{byte-order}
  source $path(buildfile{byte-order})
}
else
  little_endian = false

After this fragment we can use the little_endian variable to make decisions in our buildfile:

/: exe{hello}: cxx{hello}

exe{hello}: cxx{hello-big}:    include = (!$little_endian)
exe{hello}: cxx{hello-little}: include = $little_endian

Adding new checks

There are two check catalogs: builtin, which is part of the autoconf module, and project-specific. Ideally, common checks which can be used by multiple projects should be added to the builtin rather than project catalog (see "Which checks are considered common?" below for details). In particular, this makes sure that fixes and improvements only need to be applied in one place rather than in all the projects that use the check.

Practically, however, there are several valid reasons why we may want to add a project-specific check:

  1. Test a common check on CI before proposing it for the builtin catalog.

  2. Release a project with a common check without waiting on the autoconf release. Once the check is available as builtin, it can be dropped from the project catalog.

  3. Override a broken builtin check with a fixed version. Similar to the previous case, the check can be dropped once the fix is available in the builtin version.

  4. Have a project-private check that is unlikely to be useful to any other project.

Before adding a new check, verify the same checks does not already exist in the builtin catalog, potentially with a different name. Note that adding a project check because the same builtin check has a different name is not a valid reason: this case should be handled with autoconf.aliases discussed above.

Checks from the project catalog take precedence over the builtin checks. However, to help detect cases where a project check can be dropped (items 1-3 in the above list), the autoconf module issues a warning when a check with the same name exists in both catalogs. It's recommended that private checks (item 4) use names that can never clash with builtin checks since such checks could be used as bases by other builtin checks (see below for details on base checks). This can be achieved, for example, by embedding the project name in the check name (use autoconf.aliases to retain the original name in output).

To add a new configuration check <NAME> create the <NAME>.h header file (preserving the case) which will contain the check's implementation (use existing checks for inspiration).

Then, if this is a project-specific check, place it into the build/autoconf/checks/ subdirectory of your project (or build2/autoconf/checks/ if using the alternative naming scheme). And if this is a builtin check -- into libbuild2/autoconf/checks/ of libbuild2-autoconf. For the latter, see also "Stylistic guidelines for builtin checks" below.

The format and semantics of this header file are exactly the same for both project and builtin catalogs. Its first line must be in the form:

// <NAME>[!] [: <BASE>...]

If the name is followed by the ! modifier, then it is unprefixable (see the previous section for details). The name can also be followed by : and a space-separated list of base checks. Such checks are automatically inserted before the rest of the lines in the resulting substitution. One notable check that you may want to use as a base is BUILD2_AUTOCONF_LIBC_VERSION (see comments for details).

Subsequent lines should be C-style comments or preprocessor directives that #define or #undef <NAME> depending on whether the feature is available (though there can be idiosyncrasies; see const.h, for example). The file may also contain C++-style comment lines, which (along with the first line) are excluded from the output. Note also that there should be no double-quotes or backslashes except for line continuations.

For example, to add a new check HAVE_BAR, we could create the HAVE_BAR.h header file with the following content:

// HAVE_BAR

// TODO: maybe add support for Cygwin?

#undef HAVE_BAR

/* No bar on Windows except with MinGW. */
#if !defined(_WIN32) || \
     defined(__MINGW32__)
#  define HAVE_BAR 1
#endif

Note also that the module implementation may need to replace <NAME> with its prefixed version (unless it is unprefixable) if the autoconf.prefix functionality is in use (see above). This is done by textually substituting every occurrence of <NAME> that is separated on both left and right hand sides (that is, both characters immediately before and after <NAME> are not [A-Za-z0-9_]).

Within a file duplicate checks are automatically suppressed. And if multiple files are involved, then the user is expected to employ the autoconf.prefix functionality to avoid clashes across files. However, this does not help unprefixable names and, as a result, such checks should be implemented in ways that deal with duplication (for example, include guards).

The duplicate suppression is incompatible with conditional (at the preprocessor level) checks, for example, assuming both HAVE_EXPLICIT_* checks are based on BUILD2_AUTOCONF_LIBC_VERSION:

#ifndef _WIN32
#  undef HAVE_EXPLICIT_BZERO
#endif

#undef HAVE_EXPLICIT_MEMSET

In this example, the autoconf module will omit the second copy of the BUILD2_AUTOCONF_LIBC_VERSION check as part of the HAVE_EXPLICIT_MEMSET substitution because it was already inserted as part of the HAVE_EXPLICIT_BZERO substitution. But the first copy will not be preprocessed on Windows.

While there is no bulletproof way to detect such situations (because the unconditional check could be BUILD2_AUTOCONF_LIBC_VERSION itself; perhaps we should only have private bases that are only accessed by the user via derived public checks), it is a good idea for checks that are based on other checks to verify that the base macros are in fact defined, for example:

// HAVE_EXPLICIT_BZERO : BUILD2_AUTOCONF_LIBC_VERSION

#ifndef BUILD2_AUTOCONF_LIBC_VERSION
#  error BUILD2_AUTOCONF_LIBC_VERSION appears to be conditionally included
#endif

...

Which checks are considered common?

As mentioned above, common checks should preferably be added to the builtin catalog rather than being part of multiple projects. But which checks are considered common? The key criterion is the likelihood of a check being used by multiple projects. However, when adding a check in a specific single project, it may not always be obvious whether it is likely to be useful to someone else. In fact, since you found it useful, chances are someone else will as well, in some potentially distant future. But we feel the bar for inclusion into the builtin catalog should be higher than that.

If both of the following points hold then it's a strong indication the check in question is too obscure and should be rather kept in the project:

  1. No other project is using the same check (search the Internet for the check name and its plausible alternative spellings).

  2. The feature a check tries to detect is only available on one platform and is not likely to ever become available anywhere else. For example, a check detects presence of an idiosyncratic, OS-specific API (quite common on Mac OS) that has no counterparts on other platforms.

Stylistic guidelines for builtin checks

When writing checks for the builtin catalog we require that you follow a number of stylistic guidelines described below in addition to the correctness rules described in the "Adding new checks" section above. This helps with keeping the checks maintainable. The following example of a check illustrate many of the points discussed next:

// HAVE_STRLCPY

#undef HAVE_STRLCPY

// TODO: available in glibc since 2.38.

// NOTE: keep consistent with HAVE_STRLCAT.

/* Check for the strlcpy() function.
 *
 * Available in BSDs and Mac OS since the beginning. Not available
 * on Windows including MinGW or Linux/glibc. */
 */
#if defined(__FreeBSD__) || \
    defined(__OpenBSD__) || \
    defined(__NetBSD__)  || \
    defined(__APPLE__)
#  define HAVE_STRLCPY 1
#endif
  1. Make sure the same check is not already present in the builtin catalog, potentially with a different name. To accomplish this, search for a component of a check name that is unlikely to vary (for example strlcpy) in the contents of the existing checks.

  2. Use C-style comments except for information that should not be copied to config.h (for example, TODO notes).

  3. Use proper sentences in comments. That is, start each sentence with a capital letter and end with a period.

  4. Use canonical check name even if your project doesn't (see autoconf.aliases above).

    For headers, the canonical name is the header name with / replaced with _ and ending with _H. For example, for <sys/stat.h> the canonical check name is HAVE_SYS_STAT_H.

    For functions and macros, the canonical name is just the function/macro name. For example, for strlcpy() the canonical check name is HAVE_STRLCPY.

    For structs, the canonical name is the STRUCT_ prefix followed by the struct name. For example, for struct stat the canonical check name is HAVE_STRUCT_STAT.

    For struct data members, the canonical name is the STRUCT_ prefix followed by the struct name followed by the data member name. For example, for struct stat's st_mtim.tv_nsec data member the canonical check name is HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC.

    For other entities (builtin types, instruction sets, etc) the canonical name is typically just the entity name. For example, HAVE_SSE4_2.

    Note that if the entity includes leading underscore(s), include it (them) in the name (since there could also be a version without). For example: __bswap_32() becomes HAVE___BSWAP_32.

  5. Describe what the check is checking for. Examples:

    /* Check for the <sys/stat.h> header.
     *
     * ...
     */
    
    /* Check for the strlcpy() function.
     *
     * ...
     */
    
    /* Check for the stat struct.
     *
     * ...
     */
    
    /* Check for the st_mtim.tv_nsec data member in the stat struct.
     *
     *  ...
     */
    

    For more obscure entities you may want to expand of what it is about. For example:

    /* Check for the availability of the kCMVideoCodecType_VP9 constant.
     * VP9 is an open-source video codec developed by Google.
     *
     *  ...
     */
    
  6. Describe in a comment on which platforms/versions the checked functionality is present. Also list explicitly if it's not present on one of the main platforms: Linux with glibc, Windows (including MinGW), and Mac OS. For example:

    /* Check for the addrinfo struct.
     *
     * Available since Linux/glibc 2.4, OpenBSD 2.9, FreeBSD 3.5, NetBSD 1.5,
     * and Mac OS (exact version is unclear but for a while now). Not available
     * on Windows including MinGW.
     */
    

    The reason for essentially describing what the check below does is two-fold: Firstly, some check implementations might be hard to decipher. For example, the OpenBSD version in the check is specified as a date, not a version. More importantly, if there is a bug in the check, the description allows one to distinguish between an incorrect implementation of a correct assumption and an incorrect assumption.

    On Windows, it is fairly common for the functionality to be not available in MSVC with vanilla PlatformSDK but available in MinGW. This should be noted. The standard Windows description lines are:

    Not available on Windows including MinGW.
    Not available on Windows except MinGW.
    Available on Windows including MinGW.
    Available on Windows except MinGW.
    
  7. Avoid redundant macro checks.

    The most common offender is checking for _WIN32 or __MINGW32__:

    /* Available on Windows including MinGW. */
    #if defined(_WIN32) || defined(__MINGW32__)
    

    This is redundant since if __MINGW32__ is defined, _WIN32 is always defined as well. The correct version would be:

    /* Available on Windows including MinGW. */
    #if defined(_WIN32)
    
  8. Do not use one check to implement another (except for specific "base" checks, like BUILD2_AUTOCONF_LIBC_VERSION, that are meant to be used as bases). For example, this is incorrect:

    // HAVE_STRLCAT: HAVE_STRLCPY
    
    #undef HAVE_STRLCAT
    
    /* The same as strlcat() so just define it in its terms. */
    #ifdef HAVE_STRLCPY
    #  define HAVE_STRLCAT 1
    #endif
    

    Instead, duplicate the same (for now) check in all places, potentially adding a note to keep them consistent.

  9. If you are relying on another macro in your check, you should either include the header that defines it (potentially different for different platforms) or you should explicitly document in which situations (for example, compiler options) it is predefined by the compiler.

  10. When submitting a pull request with a number of checks, squash them into a single commit with the subject reading "Add number of common checks" and the body listing all the added checks one per line. For example:

    Add number of common checks
    
    HAVE_ACCESS
    HAVE_FILENO
    ...
    
version 0.4.0-a.0.20250910094552.e8631eeb8905
license MITMIT License
repository https://stage.build2.org/1
download libbuild2-autoconf-0.4.0-a.0.20250910094552.e8631eeb8905.tar.gz
sha256 7074cdbb902a6e46ca79a36b95e24f2243a23224170997eb6d9cf07ace28f4b6
project build2
url github.com/build2/libbuild2-autoconf

Tests

* libbuild2-autoconf-tests == 0.4.0-a.0.20250910094552.e8631eeb8905

Builds

toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-static_O3
timestamp 2025-10-21 16:34:42 UTC (01:46 minutes ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-O3
timestamp 2025-10-21 16:34:02 UTC (02:26 minutes ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++
timestamp 2025-10-21 16:33:23 UTC (03:04 minutes ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18-static_O3
timestamp 2025-10-21 16:32:45 UTC (03:43 minutes ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18-O3
timestamp 2025-10-21 16:32:03 UTC (04:24 minutes ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18
timestamp 2025-10-21 16:31:17 UTC (05:11 minutes ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10-static_O2
timestamp 2025-10-21 15:29:29 UTC (01:06:59 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8-static_O2
timestamp 2025-10-21 15:29:03 UTC (01:07:25 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10-O2
timestamp 2025-10-21 15:28:36 UTC (01:07:51 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8-O2
timestamp 2025-10-21 15:28:12 UTC (01:08:15 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10
timestamp 2025-10-21 15:27:27 UTC (01:09:01 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8
timestamp 2025-10-21 15:27:10 UTC (01:09:18 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_ubuntu_24.04-gcc_13-bindist
timestamp 2025-10-21 15:26:39 UTC (01:09:49 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_fedora_42-gcc_15-bindist
timestamp 2025-10-21 15:26:22 UTC (01:10:06 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_9_tsan-gcc_7.4
timestamp 2025-10-21 15:26:05 UTC (01:10:23 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_fedora_41-gcc_14-bindist
timestamp 2025-10-21 15:25:45 UTC (01:10:43 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11_tsan-gcc_11.3
timestamp 2025-10-21 15:25:01 UTC (01:11:27 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_12-bindist
timestamp 2025-10-21 15:25:00 UTC (01:11:28 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11_tsan-clang_14.0
timestamp 2025-10-21 15:24:23 UTC (01:12:04 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11_asan-gcc_11.3
timestamp 2025-10-21 15:23:55 UTC (01:12:33 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11_asan-clang_14.0
timestamp 2025-10-21 15:23:35 UTC (01:12:52 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11-gcc_10.2-bindist
timestamp 2025-10-21 15:23:03 UTC (01:13:25 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-static_O3
timestamp 2025-10-21 14:37:06 UTC (01:59:22 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-ndebug_O3
timestamp 2025-10-21 14:36:33 UTC (01:59:55 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-O3
timestamp 2025-10-21 14:35:58 UTC (02:00:29 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14
timestamp 2025-10-21 14:35:18 UTC (02:01:10 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.1
tgt config windows_10-msvc_15.9
timestamp 2025-10-21 14:28:12 UTC (02:08:16 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_rhel_8-gcc_8-bindist
timestamp 2025-10-21 14:27:40 UTC (02:08:48 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_9-clang_8.0_libc++
timestamp 2025-10-21 14:27:28 UTC (02:09:00 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11-clang_14.0_libc++
timestamp 2025-10-21 14:27:12 UTC (02:09:15 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11-clang_13.0_libc++
timestamp 2025-10-21 14:27:05 UTC (02:09:23 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_9-clang_8.0
timestamp 2025-10-21 14:26:58 UTC (02:09:30 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11-clang_14.0
timestamp 2025-10-21 14:26:45 UTC (02:09:43 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11-clang_13.0
timestamp 2025-10-21 14:26:37 UTC (02:09:51 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-static_O3
timestamp 2025-10-21 14:26:27 UTC (02:10:00 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-clang_9.0_libc++
timestamp 2025-10-21 14:26:24 UTC (02:10:04 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-gcc_9.3
timestamp 2025-10-21 14:26:08 UTC (02:10:20 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-gcc_10.2
timestamp 2025-10-21 14:26:03 UTC (02:10:25 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-O3
timestamp 2025-10-21 14:25:52 UTC (02:10:36 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-clang_9.0
timestamp 2025-10-21 14:25:51 UTC (02:10:37 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-clang_12.0_libc++
timestamp 2025-10-21 14:25:36 UTC (02:10:52 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-clang_10.0_libc++
timestamp 2025-10-21 14:25:31 UTC (02:10:57 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++
timestamp 2025-10-21 14:25:18 UTC (02:11:10 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18-static_O3
timestamp 2025-10-21 14:25:13 UTC (02:11:14 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-clang_12.0
timestamp 2025-10-21 14:25:02 UTC (02:11:26 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-clang_10.0
timestamp 2025-10-21 14:24:58 UTC (02:11:30 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18-static_O3
timestamp 2025-10-21 14:24:48 UTC (02:11:40 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18-O3
timestamp 2025-10-21 14:24:40 UTC (02:11:48 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18-O3
timestamp 2025-10-21 14:24:10 UTC (02:12:18 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18
timestamp 2025-10-21 14:23:33 UTC (02:12:55 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18
timestamp 2025-10-21 13:44:56 UTC (02:51:32 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10-static_O2
timestamp 2025-10-21 13:38:01 UTC (02:58:26 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10-O2
timestamp 2025-10-21 13:37:07 UTC (02:59:21 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10
timestamp 2025-10-21 13:36:00 UTC (03:00:28 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_13
timestamp 2025-10-21 13:34:52 UTC (03:01:36 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-w64-mingw32
tgt config windows_10-gcc_14.2_mingw_w64-static_O2
timestamp 2025-10-21 13:34:26 UTC (03:02:02 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-clang_17_libc++
timestamp 2025-10-21 13:34:05 UTC (03:02:23 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-clang_17
timestamp 2025-10-21 13:33:22 UTC (03:03:06 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-w64-mingw32
tgt config windows_10-gcc_14.2_mingw_w64-O2
timestamp 2025-10-21 13:33:11 UTC (03:03:16 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-w64-mingw32
tgt config windows_10-gcc_14.2_mingw_w64
timestamp 2025-10-21 13:31:24 UTC (03:05:04 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.0
tgt config windows_10-msvc_14.3
timestamp 2025-10-21 13:25:50 UTC (03:10:38 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew-static_O3
timestamp 2025-10-21 13:23:44 UTC (03:12:43 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew-O3
timestamp 2025-10-21 13:22:02 UTC (03:14:26 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew
timestamp 2025-10-21 13:20:58 UTC (03:15:30 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-apple-darwin22.5.0
tgt config macos_13-clang_15.0
timestamp 2025-10-21 13:17:31 UTC (03:18:57 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_ubuntu_22.04-gcc_11-bindist
timestamp 2025-10-21 13:15:55 UTC (03:20:33 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_rhel_9-gcc_11-bindist
timestamp 2025-10-21 13:15:48 UTC (03:20:39 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_17_libc++
timestamp 2025-10-21 13:15:14 UTC (03:21:14 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_16.0_libc++
timestamp 2025-10-21 13:15:12 UTC (03:21:16 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_16.0
timestamp 2025-10-21 13:14:29 UTC (03:21:59 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_17
timestamp 2025-10-21 13:14:28 UTC (03:22:00 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11-gcc_12.1
timestamp 2025-10-21 13:13:42 UTC (03:22:46 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0-static_O3
timestamp 2025-10-21 13:11:48 UTC (03:24:40 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0-O3
timestamp 2025-10-21 13:10:48 UTC (03:25:39 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0
timestamp 2025-10-21 13:09:10 UTC (03:27:17 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_14.0_llvm_msvc_17.2_lld
timestamp 2025-10-21 12:29:55 UTC (04:06:33 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_ubuntu_16.04-clang_3.7_libc++
timestamp 2025-10-21 12:29:13 UTC (04:07:15 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_9-clang_7.0_libc++
timestamp 2025-10-21 12:28:54 UTC (04:07:34 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_9-clang_6.0_libc++
timestamp 2025-10-21 12:28:51 UTC (04:07:37 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_9-gcc_7.4
timestamp 2025-10-21 12:28:45 UTC (04:07:43 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_9-clang_7.0
timestamp 2025-10-21 12:28:24 UTC (04:08:04 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_9-clang_6.0
timestamp 2025-10-21 12:28:21 UTC (04:08:07 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-freebsd13.3
tgt config freebsd_13-clang_17
timestamp 2025-10-21 12:27:51 UTC (04:08:37 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_8-gcc_4.9
timestamp 2025-10-21 12:27:48 UTC (04:08:40 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.2
tgt config windows_10_devmode-msvc_16.11
timestamp 2025-10-21 12:27:45 UTC (04:08:43 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.2
tgt config windows_10-msvc_16.11
timestamp 2025-10-21 12:27:23 UTC (04:09:05 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_9-gcc_8.4
timestamp 2025-10-21 12:26:41 UTC (04:09:47 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_11-gcc_11.3
timestamp 2025-10-21 12:26:38 UTC (04:09:50 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-clang_11.0_libc++
timestamp 2025-10-21 12:26:05 UTC (04:10:23 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_17_msvc_msvc_17.10
timestamp 2025-10-21 12:25:59 UTC (04:10:29 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_10-clang_11.0
timestamp 2025-10-21 12:25:27 UTC (04:11:01 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_13.1
timestamp 2025-10-21 12:22:57 UTC (04:13:31 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_15.0_libc++
timestamp 2025-10-21 12:22:15 UTC (04:14:12 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target x86_64-linux-gnu
tgt config linux_debian_12-clang_15.0
timestamp 2025-10-21 12:21:37 UTC (04:14:50 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-w64-mingw32
tgt config windows_10-gcc_14.2_mingw_w64-static_O2
timestamp 2025-10-21 11:15:17 UTC (05:21:11 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-static_O3
timestamp 2025-10-21 11:14:47 UTC (05:21:41 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-w64-mingw32
tgt config windows_10-gcc_14.2_mingw_w64-O2
timestamp 2025-10-21 11:14:21 UTC (05:22:07 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-ndebug_O3
timestamp 2025-10-21 11:14:14 UTC (05:22:14 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-O3
timestamp 2025-10-21 11:13:38 UTC (05:22:50 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-w64-mingw32
tgt config windows_10-gcc_14.2_mingw_w64
timestamp 2025-10-21 11:13:09 UTC (05:23:19 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14
timestamp 2025-10-21 11:12:58 UTC (05:23:30 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-static_O3
timestamp 2025-10-21 11:01:13 UTC (05:35:15 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-O3
timestamp 2025-10-21 11:00:43 UTC (05:35:45 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++
timestamp 2025-10-21 11:00:11 UTC (05:36:17 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18-static_O3
timestamp 2025-10-21 10:59:40 UTC (05:36:48 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18-O3
timestamp 2025-10-21 10:59:08 UTC (05:37:20 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18
timestamp 2025-10-21 10:58:26 UTC (05:38:02 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_rhel_8-gcc_8-bindist
timestamp 2025-10-21 10:55:33 UTC (05:40:55 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_9-clang_8.0_libc++
timestamp 2025-10-21 10:55:14 UTC (05:41:14 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11-clang_14.0_libc++
timestamp 2025-10-21 10:55:04 UTC (05:41:23 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11-clang_13.0_libc++
timestamp 2025-10-21 10:55:02 UTC (05:41:26 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_9-clang_8.0
timestamp 2025-10-21 10:54:43 UTC (05:41:45 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11-clang_14.0
timestamp 2025-10-21 10:54:35 UTC (05:41:53 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11-clang_13.0
timestamp 2025-10-21 10:54:31 UTC (05:41:57 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-clang_9.0_libc++
timestamp 2025-10-21 10:54:11 UTC (05:42:17 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-gcc_10.2
timestamp 2025-10-21 10:53:58 UTC (05:42:30 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-gcc_9.3
timestamp 2025-10-21 10:53:58 UTC (05:42:30 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-clang_9.0
timestamp 2025-10-21 10:53:38 UTC (05:42:50 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18-static_O3
timestamp 2025-10-21 10:53:26 UTC (05:43:02 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-clang_12.0_libc++
timestamp 2025-10-21 10:53:20 UTC (05:43:07 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18-O3
timestamp 2025-10-21 10:52:51 UTC (05:43:37 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-clang_10.0_libc++
timestamp 2025-10-21 10:52:48 UTC (05:43:40 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-clang_12.0
timestamp 2025-10-21 10:52:46 UTC (05:43:42 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-clang_10.0
timestamp 2025-10-21 10:52:15 UTC (05:44:13 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18
timestamp 2025-10-21 10:52:12 UTC (05:44:16 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew-static_O3
timestamp 2025-10-21 10:45:40 UTC (05:50:48 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew-O3
timestamp 2025-10-21 10:44:48 UTC (05:51:40 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew
timestamp 2025-10-21 10:43:38 UTC (05:52:50 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_13
timestamp 2025-10-21 10:30:17 UTC (06:06:11 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-clang_17_libc++
timestamp 2025-10-21 10:29:34 UTC (06:06:54 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-clang_17
timestamp 2025-10-21 10:28:51 UTC (06:07:36 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0-static_O3
timestamp 2025-10-21 10:28:41 UTC (06:07:47 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0-O3
timestamp 2025-10-21 10:27:11 UTC (06:09:16 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0
timestamp 2025-10-21 10:25:40 UTC (06:10:48 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-apple-darwin22.5.0
tgt config macos_13-clang_15.0
timestamp 2025-10-21 10:23:37 UTC (06:12:51 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_ubuntu_22.04-gcc_11-bindist
timestamp 2025-10-21 10:21:57 UTC (06:14:31 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_rhel_9-gcc_11-bindist
timestamp 2025-10-21 10:21:49 UTC (06:14:39 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_17_libc++
timestamp 2025-10-21 10:21:23 UTC (06:15:05 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_16.0_libc++
timestamp 2025-10-21 10:21:15 UTC (06:15:13 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_17
timestamp 2025-10-21 10:20:47 UTC (06:15:41 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_16.0
timestamp 2025-10-21 10:20:04 UTC (06:16:23 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11-gcc_12.1
timestamp 2025-10-21 10:19:14 UTC (06:17:13 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_17_msvc_msvc_17.10
timestamp 2025-10-21 09:50:21 UTC (06:46:07 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_14.0_llvm_msvc_17.2_lld
timestamp 2025-10-21 09:50:12 UTC (06:46:16 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_9-clang_7.0_libc++
timestamp 2025-10-21 09:49:03 UTC (06:47:25 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_9-clang_6.0_libc++
timestamp 2025-10-21 09:49:00 UTC (06:47:28 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_ubuntu_16.04-clang_3.7_libc++
timestamp 2025-10-21 09:48:30 UTC (06:47:57 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_9-clang_7.0
timestamp 2025-10-21 09:48:30 UTC (06:47:58 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_9-gcc_7.4
timestamp 2025-10-21 09:47:57 UTC (06:48:31 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_9-clang_6.0
timestamp 2025-10-21 09:47:57 UTC (06:48:31 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-freebsd13.3
tgt config freebsd_13-clang_17
timestamp 2025-10-21 09:47:27 UTC (06:49:01 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_8-gcc_4.9
timestamp 2025-10-21 09:47:19 UTC (06:49:09 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-clang_11.0_libc++
timestamp 2025-10-21 09:42:17 UTC (06:54:11 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_13.1
timestamp 2025-10-21 09:41:59 UTC (06:54:29 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_9-gcc_8.4
timestamp 2025-10-21 09:41:49 UTC (06:54:39 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_10-clang_11.0
timestamp 2025-10-21 09:41:45 UTC (06:54:43 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_15.0_libc++
timestamp 2025-10-21 09:41:22 UTC (06:55:06 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11-gcc_11.3
timestamp 2025-10-21 09:41:17 UTC (06:55:11 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-clang_15.0
timestamp 2025-10-21 09:40:43 UTC (06:55:45 hours ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10-static_O2
timestamp 2025-10-21 09:29:10 UTC (07:07:17 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10-O2
timestamp 2025-10-21 09:27:50 UTC (07:08:38 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8-static_O2
timestamp 2025-10-21 09:27:48 UTC (07:08:40 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8-O2
timestamp 2025-10-21 09:27:03 UTC (07:09:25 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10
timestamp 2025-10-21 09:26:32 UTC (07:09:56 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8
timestamp 2025-10-21 09:26:08 UTC (07:10:19 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.0
tgt config windows_10-msvc_14.3
timestamp 2025-10-21 09:08:16 UTC (07:28:12 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.2
tgt config windows_10_devmode-msvc_16.11
timestamp 2025-10-21 09:07:17 UTC (07:29:11 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.2
tgt config windows_10-msvc_16.11
timestamp 2025-10-21 09:07:14 UTC (07:29:14 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.1
tgt config windows_10-msvc_15.9
timestamp 2025-10-21 09:06:01 UTC (07:30:27 hours ago)
result error (configure) | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-static_O3
timestamp 2025-10-20 16:26:06 UTC (01 00:10:22 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-static_O3
timestamp 2025-10-20 16:25:41 UTC (01 00:10:47 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-ndebug_O3
timestamp 2025-10-20 16:25:25 UTC (01 00:11:03 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-O3
timestamp 2025-10-20 16:25:03 UTC (01 00:11:24 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-O3
timestamp 2025-10-20 16:24:42 UTC (01 00:11:45 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++
timestamp 2025-10-20 16:24:27 UTC (01 00:12:01 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14
timestamp 2025-10-20 16:23:56 UTC (01 00:12:32 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18-static_O3
timestamp 2025-10-20 16:23:48 UTC (01 00:12:40 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18-O3
timestamp 2025-10-20 16:23:09 UTC (01 00:13:19 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18
timestamp 2025-10-20 16:22:22 UTC (01 00:14:06 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10-static_O2
timestamp 2025-10-20 15:04:01 UTC (01 01:32:27 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10-O2
timestamp 2025-10-20 15:03:05 UTC (01 01:33:23 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10
timestamp 2025-10-20 15:01:56 UTC (01 01:34:32 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_ubuntu_24.04-gcc_13-bindist
timestamp 2025-10-20 14:58:56 UTC (01 01:37:32 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_fedora_42-gcc_15-bindist
timestamp 2025-10-20 14:58:43 UTC (01 01:37:45 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_9_tsan-gcc_7.4
timestamp 2025-10-20 14:58:41 UTC (01 01:37:47 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_fedora_41-gcc_14-bindist
timestamp 2025-10-20 14:58:21 UTC (01 01:38:07 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_12-bindist
timestamp 2025-10-20 14:57:43 UTC (01 01:38:45 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11_tsan-gcc_11.3
timestamp 2025-10-20 14:57:42 UTC (01 01:38:46 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11_tsan-clang_14.0
timestamp 2025-10-20 14:57:09 UTC (01 01:39:18 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11_asan-gcc_11.3
timestamp 2025-10-20 14:56:46 UTC (01 01:39:42 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11_asan-clang_14.0
timestamp 2025-10-20 14:56:14 UTC (01 01:40:14 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251020110657.15a9d765d7b8
target x86_64-linux-gnu
tgt config linux_debian_11-gcc_10.2-bindist
timestamp 2025-10-20 14:55:48 UTC (01 01:40:40 days ago)
result success | log | rebuild
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14
result unbuilt
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-O3
result unbuilt
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-ndebug_O3
result unbuilt
toolchain stage-0.18.0-a.0.20251021111650.ee8784c77f8f
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-clang_17
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-clang_17_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18-O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_13
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-ndebug_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-freebsd13.3
tgt config freebsd_13-clang_17
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18-O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-clang_10.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-clang_10.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-clang_11.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-clang_11.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-clang_12.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-clang_12.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-clang_9.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-clang_9.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-gcc_10.2
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_10-gcc_9.3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11-clang_13.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11-clang_13.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11-clang_14.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11-clang_14.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11-gcc_10.2-bindist
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11-gcc_11.3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11-gcc_12.1
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11_asan-clang_14.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11_asan-gcc_11.3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11_tsan-clang_14.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_11_tsan-gcc_11.3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_15.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_15.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_16.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_16.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_17
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_17_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18-O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_12-bindist
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_13.1
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-ndebug_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_8-gcc_4.9
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_9-clang_6.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_9-clang_6.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_9-clang_7.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_9-clang_7.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_9-clang_8.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_9-clang_8.0_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_9-gcc_7.4
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_9-gcc_8.4
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_debian_9_tsan-gcc_7.4
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_fedora_41-gcc_14-bindist
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_fedora_42-gcc_15-bindist
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_rhel_8-gcc_8-bindist
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_rhel_9-gcc_11-bindist
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_ubuntu_16.04-clang_3.7_libc++
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_ubuntu_22.04-gcc_11-bindist
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-linux-gnu
tgt config linux_ubuntu_24.04-gcc_13-bindist
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-apple-darwin22.5.0
tgt config macos_13-clang_15.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0-O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew-O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew-static_O3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.0
tgt config windows_10-msvc_14.3
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.1
tgt config windows_10-msvc_15.9
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.2
tgt config windows_10-msvc_16.11
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.2
tgt config windows_10_devmode-msvc_16.11
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_14.0_llvm_msvc_17.2_lld
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_17_msvc_msvc_17.10
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10-O2
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10-static_O2
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10-O2
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10-static_O2
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8-O2
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8-static_O2
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-w64-mingw32
tgt config windows_10-gcc_14.2_mingw_w64
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-w64-mingw32
tgt config windows_10-gcc_14.2_mingw_w64-O2
result unbuilt
toolchain stage-0.18.0-a.0.20250910080032.baa66b62ac2c
target x86_64-w64-mingw32
tgt config windows_10-gcc_14.2_mingw_w64-static_O2
result unbuilt