From e5187db9ef673d1fdded67e41077b8e3187063c1 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 24 Jun 2021 13:48:23 +0200 Subject: [PATCH] Mark 32-bit yabridge libraries So we're able to immediately spot that someone is using them from the logs. --- src/plugin/bridges/common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugin/bridges/common.h b/src/plugin/bridges/common.h index 9f7bb00f..ac264dbb 100644 --- a/src/plugin/bridges/common.h +++ b/src/plugin/bridges/common.h @@ -126,6 +126,9 @@ class PluginBridge { std::stringstream init_msg; init_msg << "Initializing yabridge version " << yabridge_git_version +#ifdef __i386__ + << " (32-bit build)" +#endif << std::endl; init_msg << "host: '" << plugin_host->path().string() << "'" << std::endl;