distributable: url: https://github.com/facebook/folly/releases/download/{{version.tag}}/folly-{{version.tag}}.tar.gz strip-components: 0 versions: github: facebook/folly dependencies: boost.org: '*' gflags.github.io: '*' google.com/glog: '<0.7' libevent.org: '*' lz4.org: 1 openssl.org: ^1.1 tukaani.org/xz: 5 facebook.com/zstd: 1 gnu.org/coreutils: 9 google.github.io/snappy: '*' google.com/double-conversion: ^3 google.com/googletest: ^1 fmt.dev: ^10 zlib.net: ^1 darwin: sourceware.org/bzip2: '*' linux: libcxx.llvm.org: ^18 # libunwind, since 2024.5.13.0 jemalloc.net: ^5 # since 2024.5.13.0 elfutils.org: ^0 # for dwarf.h, since 2024.5.13.0 build: dependencies: cmake.org: ^3.0.2 freedesktop.org/pkg-config: ^0.29 script: - cmake $ARGS -DBUILD_SHARED_LIBS=ON -S . -B shared - cmake --build shared - cmake --install shared - cmake $ARGS -DBUILD_SHARED_LIBS=OFF -S . -B static - cmake --build static - run: cp $SRCROOT/static/libfolly.a libfollybenchmark.a working-directory: ${{prefix}}/static/folly - run: | sed -E -i.bak \ -e "s:{{pkgx.prefix}}:\$\{_IMPORT_PREFIX\}/../../..:g" \ -e '/^ INTERFACE_INCLUDE_DIRECTORIES/ s|/v([0-9]+)(\.[0-9]+)*[a-z]?/include|/v\1/include|g' \ -e '/^ INTERFACE_LINK_LIBRARIES/ s|/v([0-9]+)(\.[0-9]+)*[a-z]?/lib|/v\1/lib|g' \ folly-targets.cmake rm folly-targets.cmake.bak working-directory: ${{prefix}}/lib/cmake/folly - run: | sed -i.bak -e 's/-I[^ ]* *//g' libfolly.pc rm libfolly.pc.bak working-directory: ${{prefix}}/lib/pkgconfig # folly has libs that end up with name @rpath/libfolly.{{version}}.dylib (offset 24) # so we need to add @loader_path to the rpath - run: | for LIB in libfolly*.*.*.*-dev.dylib; do install_name_tool -add_rpath @loader_path $LIB done working-directory: ${{prefix}}/lib if: darwin env: ARGS: - -DCMAKE_INSTALL_PREFIX={{prefix}} - -DCMAKE_BUILD_TYPE=Release - -DBUILD_TESTING=OFF - -DCMAKE_VERBOSE_MAKEFILE=ON - -DFOLLY_USE_JEMALLOC=OFF linux/aarch64: ARGS: - -DCMAKE_C_FLAGS=-fPIC - -DCMAKE_CXX_FLAGS=-fPIC - -DCMAKE_EXE_LINKER_FLAGS=-Wl,-pie,-lrt,-lunwind linux/x86-64: ARGS: - -DCMAKE_EXE_LINKER_FLAGS=-Wl,-pie,-lrt,-lunwind test: fixture: | #include int main() { folly::fbvector numbers({0, 1, 2, 3}); numbers.reserve(10); for (int i = 4; i < 10; i++) { numbers.push_back(i * 2); } assert(numbers[6] == 12); return 0; } script: | mv $FIXTURE b.cc c++ -std=c++17 b.cc -lfolly -ldl -lfmt -lglog ./a.out