Repository: powturbo/Turbo-Base64 Branch: master Commit: 83b2a8d1555c Files: 32 Total size: 284.5 KB Directory structure: gitextract_0jc76c4i/ ├── .github/ │ └── workflows/ │ └── build.yaml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake/ │ └── turbobase64-config.cmake.in ├── conf.h ├── makefile ├── rust/ │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── src/ │ │ ├── bindings.rs │ │ ├── lib.rs │ │ └── tests.rs │ └── wrapper.h ├── tb64app.c ├── time_.h ├── turbob64.h ├── turbob64_.h ├── turbob64c.c ├── turbob64d.c ├── turbob64v128.c ├── turbob64v256.c ├── turbob64v512.c └── vs/ ├── getopt.c ├── getopt.h ├── inttypes.h ├── stdint.h ├── turbob64avx.c └── vs2022/ ├── TB64App.vcxproj ├── TurboBase64.sln └── TurboBase64.vcxproj ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/build.yaml ================================================ name: build on: push: branches: - master pull_request: branches: - master jobs: linux: runs-on: '${{ matrix.os }}' strategy: fail-fast: false matrix: os: [ubuntu-latest] compiler: ["gcc", "clang"] env: CC: ${{ matrix.compiler }} steps: - uses: actions/checkout@v3 - run: make - run: lscpu - run: ./tb64app -v1 macos: runs-on: '${{ matrix.os }}' strategy: fail-fast: false matrix: os: [macos-latest] compiler: ["clang"] env: CC: ${{ matrix.compiler }} steps: - uses: actions/checkout@v3 - run: make - run: sysctl -n machdep.cpu.brand_string - run: ./tb64app -v1 # - run: ./tb64app -T -f3 windows: runs-on: windows-latest defaults: run: shell: msys2 {0} steps: - uses: actions/checkout@v3 - uses: msys2/setup-msys2@v2 with: msystem: MINGW64 install: make mingw-w64-x86_64-gcc update: true - run: make - run: ./tb64app -v1 # - run: ./tb64app -T -f3 ================================================ FILE: CMakeLists.txt ================================================ cmake_minimum_required(VERSION 3.15) project(turbobase64 C) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release) endif() # Run cmake -D