mconfig: uname
doen't really work on OpenWrt. Any ideas?
#154
-
So on most standard OpenWrts, you aren't exactly supposed to run a secondary init system. However, some far more powerful devices could totally profit from it, especially since you can However, for other tools like Caddy and Clash, it is much more beneficial to just run a small secondary init for "user stuff". That is what I use dinit for. But when building from source, Since I am not 100% sure how to best add this config, I wanted to ask what best to do. Here is the
Thanks! =) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi. |
Beta Was this translation helpful? Give feedback.
-
You should use In terms of adding new config for OpenWRT, I suggest either:
|
Beta Was this translation helpful? Give feedback.
_GLIBCXX_USE_CXX11_ABI
controls the ABI used within libstdc++, which is normally built as part of GCC. So, unless this is a misunderstanding on my part (in which case, please explain!), whether or not musl is your libc has no bearing on whether you should compile with_GLIBCXX_USE_CXX11_ABI
set to a particular value. Despite the name of the macro, it has nothing to do with Glibc.You should use
_GLIBCXX_USE_CXX11_ABI=0
if you are building with GCC 5 or 6, and_GLIBCXX_USE_CXX_ABI=1
if building with GCC 7. However even for GCC 6 and 7 this is no longer required with the current point releases, since I note th…