From f5176f01b9e0e9623a749082b556ed7d87ce74dd Mon Sep 17 00:00:00 2001 From: Marvin Scholz Date: Tue, 8 Mar 2022 22:04:51 +0100 Subject: [PATCH] tests: bitcode: add missing b_bitcode option The bitcode test did not actually have bitcode enabled, making it not really useful. --- test cases/osx/7 bitcode/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test cases/osx/7 bitcode/meson.build b/test cases/osx/7 bitcode/meson.build index f94bf9d3d..50ce3f21b 100644 --- a/test cases/osx/7 bitcode/meson.build +++ b/test cases/osx/7 bitcode/meson.build @@ -1,4 +1,5 @@ -project('bitcode test', 'c', 'objc', 'objcpp') +project('bitcode test', 'c', 'objc', 'objcpp', + default_options : ['b_bitcode=true']) both_libraries('alib', 'libfoo.m') shared_module('amodule', 'libfoo.m')