diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-09-15 10:04:03 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-09-15 10:16:41 +0900 |
commit | 5fcf87596b42f905c01973a33a844ec911529420 (patch) | |
tree | b7c2e3f918ad67e1748437d1fa6225317b2123ce /.github | |
parent | e31961ea83b9c41f475e68c4ab587aa8099af300 (diff) | |
download | xbyak-5fcf87596b42f905c01973a33a844ec911529420.tar.gz xbyak-5fcf87596b42f905c01973a33a844ec911529420.zip |
compile nasm-2.15 instead of apt install
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a2a8c7f..1e53b98 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,6 +8,8 @@ jobs: steps: - uses: actions/checkout@v2 - run: sudo apt update - - run: sudo apt install nasm yasm g++-multilib tcsh + - run: sudo apt install yasm g++-multilib tcsh + - run: wget https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/nasm-2.15.05.tar.gz + - run: tar xvfz nasm-2.15.05.tar.gz && cd nasm-2.15.05 && ./configure && make && sudo make install && cd .. - run: make test - run: make -C sample CXXFLAGS="-DXBYAK_NO_EXCEPTION" |