<div dir="ltr"><div>Thank you for your answer. So I continue my struggle.</div><div><br></div><div>How can I disable threads for libc++? I can't find any switch in the documentation.</div><div><br></div><div>Kacper<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">czw., 14 lis 2019 o 11:18 Peter Smith <<a href="mailto:peter.smith@linaro.org">peter.smith@linaro.org</a>> napisał(a):<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Wed, 13 Nov 2019 at 20:34, Kacper Kowalski via llvm-dev<br>
<<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br>
><br>
> Hello,<br>
><br>
> lately, I have been thinking about how to resolve the problem with that the program size increases enormously when including <iostream> when compiling with libstdc++. In this library, in <iostream> there is a static object __ioinit initialized like so:<br>
><br>
>   ...<br>
>   // For construction of filebuffers for cout, cin, cerr, clog et. al.<br>
>   static ios_base::Init __ioinit;<br>
>   ...<br>
><br>
> This makes the program size increase enormously. The thing is that I often compile programs for small platforms, like arm-cortex-m3 or arm-cortex-m4 (stm32, nrf52, ...). Including this header leads to the program size exceed the FLASH memory size.<br>
><br>
> This is not a problem when you have full control over what you include. But if you use external libraries and you don't want to mess with their sources, or you are not able to, then it gets complicated.<br>
><br>
> To resolve this issue I found out that libc++ can be compiled with the flags:<br>
><br>
>     -D_LIBCPP_HAS_NO_STDOUT:BOOL=ON<br>
>     -D_LIBCPP_HAS_NO_STDIN:BOOL=ON<br>
><br>
> so I gave it a try: I started a struggle to compile libc++ and libc++ ABI with ARMToolchain-9-2019-q4-major. Unfortunately, I failed.<br>
><br>
> This is how I build libc++:<br>
><br>
> TOOLCHAIN_ROOT_DIR="${HOME}/ARMToolchain-9-2019-q4-major"<br>
><br>
> export CC="${TOOLCHAIN_ROOT_DIR}/bin/arm-none-eabi-gcc"<br>
> export CXX="${TOOLCHAIN_ROOT_DIR}/bin/arm-none-eabi-g++"<br>
><br>
> C_AND_CXX_COMMON_FLAGS_BASE="-mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard --specs=nosys.specs\<br>
>     --sysroot=${TOOLCHAIN_ROOT_DIR} -I${TOOLCHAIN_ROOT_DIR}/arm-none-eabi/include\<br>
>     -L${TOOLCHAIN_ROOT_DIR}/lib -L${TOOLCHAIN_ROOT_DIR}/lib/gcc/arm-none-eabi/9.2.1"<br>
> C_AND_CXX_COMMON_FLAGS_MORE="-mthumb -mabi=aapcs"<br>
> C_AND_CXX_COMMON_FLAGS="$C_AND_CXX_COMMON_FLAGS_BASE $C_AND_CXX_COMMON_FLAGS_MORE"<br>
><br>
> cmake \<br>
>     -DCMAKE_CROSS_COMPILING:BOOL=ON \<br>
>     -DLLVM_ENABLE_PROJECTS='libcxxabi;libcxx' \<br>
>     -DCMAKE_INSTALL_PREFIX='${HOME}/ClangLibcxx' \<br>
>     -DCMAKE_BUILD_TYPE='Release' \<br>
>     -DLLVM_ENABLE_ASSERTIONS:BOOL=ON \<br>
>     -DLLVM_TARGET_ARCH='ARM' \<br>
>     -DLLVM_TARGETS_TO_BUILD='ARM' \<br>
>     -DLIBCXX_BUILD_32_BITS:BOOL=ON \<br>
>     -DLLVM_BUILD_32_BITS:BOOL=ON \<br>
>     -DLLVM_ENABLE_STATIC:BOOL=ON \<br>
>     -DLLVM_ENABLE_SHARED:BOOL=OFF \<br>
>     -DLLVM_DISABLE_PIC:BOOL=OFF \<br>
>     -D_LIBCPP_HAS_NO_STDOUT:BOOL=ON \<br>
>     -D_LIBCPP_HAS_NO_STDIN:BOOL=ON \<br>
>     -DCMAKE_C_FLAGS="$C_AND_CXX_COMMON_FLAGS" \<br>
>     -DCMAKE_CXX_FLAGS="$C_AND_CXX_COMMON_FLAGS" \<br>
>     ../llvm<br>
><br>
> Firstly, I encounter the known problem with __atomic_load_8. arm-cortex-m{3,4} most probably doesn't support 64bit atomic read/write, but as long as I don't use it, changing the line in CheckAtomic.cmake:<br>
><br>
>       message(FATAL_ERROR "Host compiler appears to require libatomic, but cannot find it.")<br>
><br>
> to:<br>
><br>
>       message(WARNING "Host compiler appears to require libatomic, but cannot find it.")<br>
><br>
> could push the things further.<br>
> But then I encounter that error:<br>
><br>
>     -- Targeting ARM<br>
>     CMake Error at /home/kacper/Workspace/LLVMProject/libcxxabi/CMakeLists.txt:216 (message):<br>
>         LIBCXXABI_BUILD_32_BITS=ON is not supported on this platform.<br>
><br>
> which is confusing.<br>
><br>
> Can't the libc++abi be compiled for 32B ARM targets?<br>
><br>
<br>
libc++abi can be compiled for 32-bit ARM targets. I think the intent<br>
behind that particular option is for 64-bit X86 building for 32-bit<br>
i386. The ARM target is only 32-bit so there isn't any need for an<br>
option, I suggest leaving out LIBCXXABI_BUILD_32_BITS=ON,<br>
-DLIBCXX_BUILD_32_BITS:BOOL=ON and  -DLLVM_BUILD_32_BITS:BOOL=ON<br>
<br>
It may be worth disabling threads for libc++. From memory libc++<br>
relies on a pthread API by default which the GNU embedded toolchain<br>
won't supply. I think that there are ways to supply an alternative<br>
threading implementation but I don't know the details.<br>
<br>
Hope this helps and good luck<br>
<br>
Peter<br>
<br>
> Best regards,<br>
> Kacper Kowalski<br>
> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> <a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>