leleliu008
leleliu008
**build toolchain:** `android-ndk 21.3.6528147` **build source:** https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.1.tar.bz2 ``` libtool: compile: armv7a-linux-androideabi26-clang -DHAVE_CONFIG_H -I. -I/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/opal/mca/pmix/pmix3x/pmix/src/util/keyval -I../../../src/include -I../../../include -iquote/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/1625720363/armeabi-v7a/opal/mca/pmix/pmix3x/pmix -iquote/var/folders/jw/7vmz4m1970932zln9tb1whxr0000g n/T/tmp.CqZn4eIR/opal/mca/pmix/pmix3x/pmix -iquote/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/opal/mca/pmix/pmix3x/pmix/src -iquote/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/1625720363/armeabi-v7a/opal/mca/pmix/pmix3x/pmix/ include -I/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/opal/mca/pmix/pmix3x/pmix/include -I/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR -I/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/1625720363/armeabi-v7a -I/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/opal/include -I/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/1625720363/armeabi-v7a/opal/include -I/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/1625720363/armeabi-v7a/opal/mca/hwloc/hwloc201/hwloc/include -I/var/folders/jw/7vmz4m1970932zln9tb1whxr0000gn/T/tmp.CqZn4eIR/opal/mca/hwloc/hwloc201/hwloc/include -I/Users/leleliu008/.ndk-pkg/install.d/libevent/armeabi-v7a/include...
add new theme: powerline-shell wrapper for fish
ubuntu-18.04 Actions runner image is deprecated since 2022-08-08 ubuntu-22.04 Actions runner image is available since 2022-08-08 Reference: https://github.com/actions/runner-images/issues/6002 https://github.com/actions/runner-images/issues/5998 Signed-off-by: leleliu008
**Running the following code in the terminal on OpenBSD 6.8:** ```bash sudo pkg_add git automake-1.16.2 export AUTOCONF_VERSION=2.69 export AUTOMAKE_VERSION=1.16 export CFLAGS='-I/usr/local/include -L/usr/local/lib' sudo ln -s /usr/local/lib/libiconv.so.* /usr/local/lib/libiconv.so git clone https://github.com/universal-ctags/ctags...
`man/Makefile.am` use `Pattern Rules` syntax which is a `GNU make` extension and not supported by `BSD make`. https://www.gnu.org/software/make/manual/html_node/Pattern-Rules.html https://wiki.netbsd.org/projects/project/bsdmake-enhancements/
**MSYSTEM=MINGW32 :** ``` pacman -Syyuu --noconfirm pacman -S --noconfirm git make automake autoconf dos2unix mingw-w64-i686-toolchain git clone https://github.com/universal-ctags/ctags cd ctags ./autogen.sh ./configure make make roundtrip ``` **MSYSTEM=MINGW64 :** ``` pacman...
relavent code: [misc/roundtrip#L139-L140](https://github.com/universal-ctags/ctags/blob/master/misc/roundtrip#L139-L140) ``` t="${t% _}" ``` here why split into 2 line? can it be change to `t="${t%_}"` ?
In our build script define a macro called `CASE_INSENSITIVE_FILENAMES`, this macro determined at build time. I think this logical is not correct. because many different filesystems can be used in...
**relavent code:** [main/general.h#L12-L19](https://github.com/universal-ctags/ctags/blob/master/main/general.h#L12-L19) ``` /* * INCLUDE FILES */ #if defined (HAVE_CONFIG_H) # include #elif defined (WIN32) # include "e_msoft.h" #endif ``` 1. the comment should be removed, it is...