This website requires JavaScript.
Explore
Help
Register
Sign In
Virtualization
/
meson
mirror of
https://gitlab.com/qemu-project/meson.git
Watch
1
Star
0
Fork
You've already forked meson
0
Code
Issues
Projects
Releases
Wiki
Activity
f39ccde513
meson
/
test cases
/
osx
/
7 bitcode
/
libfile.c
6 lines
68 B
C
Raw
Normal View
History
Unescape
Escape
compilers: Fix bitcode and other options for objc code We were setting the base options for the Objective-C compiler manually, due to which options such as b_bitcode and b_ndebug were not getting set at all. The base options here are the same as for C code with the Clang compiler, so just use the same inherited list. Also expand the bitcode test to ObjC and ObjC++ so this doesn't happen again.
2019-06-18 14:40:55 +08:00
#
include
"vis.h"
ci/test: unused args for Windows
2019-12-01 13:19:44 +08:00
int
EXPORT_PUBLIC
libfunc
(
void
)
{
compilers: Fix bitcode and other options for objc code We were setting the base options for the Objective-C compiler manually, due to which options such as b_bitcode and b_ndebug were not getting set at all. The base options here are the same as for C code with the Clang compiler, so just use the same inherited list. Also expand the bitcode test to ObjC and ObjC++ so this doesn't happen again.
2019-06-18 14:40:55 +08:00
return
3
;
}