BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
- ubuntu-latest-make:
- runs-on: ubuntu-latest
+ ubuntu-focal-make:
+ runs-on: ubuntu-20.04
steps:
- name: Clone
id: depends
run: |
sudo apt-get update
- sudo apt-get install build-essential
+ sudo apt-get install build-essential gcc-8
- name: Build
id: make_build
run: |
- make
+ CC=gcc-8 make
ubuntu-latest-cmake:
runs-on: ubuntu-latest
runs-on: ubuntu-latest
needs:
- - ubuntu-latest-make
+ - ubuntu-focal-make
- ubuntu-latest-cmake
- macOS-latest-make
- macOS-latest-cmake
static inline __m128i bytes_from_nibbles_16(const uint8_t * rsi)
{
// Load 8 bytes from memory
- __m128i tmp = _mm_loadu_si64( ( const __m128i* )rsi );
+ __m128i tmp = _mm_loadl_epi64( ( const __m128i* )rsi );
// Expand bytes into uint16_t values
__m128i bytes = _mm_cvtepu8_epi16( tmp );