hc
2024-07-16 5fbd6e2385615a225453562361c4bdab3b15fda1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
config BR2_PACKAGE_RE2
   bool "re2"
   depends on BR2_INSTALL_LIBSTDCPP
   depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # needs C++11
   depends on BR2_TOOLCHAIN_HAS_THREADS
   help
     RE2 is a fast, safe, thread-friendly alternative
     to backtracking regular expression engines like
     those used in PCRE, Perl, and Python.
     It is a C++ library.
 
     https://github.com/google/re2
 
comment "re2 needs a toolchain w/ C++, threads, gcc >= 4.8"
   depends on !BR2_INSTALL_LIBSTDCPP || \
       !BR2_TOOLCHAIN_HAS_THREADS || \
       !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8