Skip to content

Commit

Permalink
10.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Disservin committed Jun 1, 2024
1 parent 2715ede commit ffd6aa8
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 81 deletions.
158 changes: 79 additions & 79 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,91 +13,91 @@ jobs:
fail-fast: false
matrix:
config:
- name: Ubuntu 20.04 GCC
os: ubuntu-20.04
compiler: g++
comp: gcc
run_32bit_tests: true
run_64bit_tests: true
shell: bash
- name: Ubuntu 20.04 Clang
os: ubuntu-20.04
compiler: clang++
comp: clang
run_32bit_tests: true
run_64bit_tests: true
shell: bash
- name: Android NDK aarch64
os: ubuntu-22.04
compiler: aarch64-linux-android21-clang++
comp: ndk
run_armv8_tests: true
shell: bash
- name: Android NDK arm
os: ubuntu-22.04
compiler: armv7a-linux-androideabi21-clang++
comp: ndk
run_armv7_tests: true
shell: bash
- name: Linux GCC riscv64
os: ubuntu-22.04
compiler: g++
comp: gcc
run_riscv64_tests: true
base_image: "riscv64/alpine:edge"
platform: linux/riscv64
shell: bash
- name: Linux GCC ppc64
os: ubuntu-22.04
compiler: g++
comp: gcc
run_ppc64_tests: true
base_image: "ppc64le/alpine:latest"
platform: linux/ppc64le
shell: bash
- name: MacOS 13 Apple Clang
os: macos-13
compiler: clang++
comp: clang
run_64bit_tests: true
shell: bash
- name: MacOS 14 Apple Clang M1
os: macos-14
compiler: clang++
comp: clang
run_64bit_tests: false
run_m1_tests: true
shell: bash
# - name: Ubuntu 20.04 GCC
# os: ubuntu-20.04
# compiler: g++
# comp: gcc
# run_32bit_tests: true
# run_64bit_tests: true
# shell: bash
# - name: Ubuntu 20.04 Clang
# os: ubuntu-20.04
# compiler: clang++
# comp: clang
# run_32bit_tests: true
# run_64bit_tests: true
# shell: bash
# - name: Android NDK aarch64
# os: ubuntu-22.04
# compiler: aarch64-linux-android21-clang++
# comp: ndk
# run_armv8_tests: true
# shell: bash
# - name: Android NDK arm
# os: ubuntu-22.04
# compiler: armv7a-linux-androideabi21-clang++
# comp: ndk
# run_armv7_tests: true
# shell: bash
# - name: Linux GCC riscv64
# os: ubuntu-22.04
# compiler: g++
# comp: gcc
# run_riscv64_tests: true
# base_image: "riscv64/alpine:edge"
# platform: linux/riscv64
# shell: bash
# - name: Linux GCC ppc64
# os: ubuntu-22.04
# compiler: g++
# comp: gcc
# run_ppc64_tests: true
# base_image: "ppc64le/alpine:latest"
# platform: linux/ppc64le
# shell: bash
# - name: MacOS 13 Apple Clang
# os: macos-13
# compiler: clang++
# comp: clang
# run_64bit_tests: true
# shell: bash
# - name: MacOS 14 Apple Clang M1
# os: macos-14
# compiler: clang++
# comp: clang
# run_64bit_tests: false
# run_m1_tests: true
# shell: bash
- name: MacOS 13 GCC 11
os: macos-13
compiler: g++-11
comp: gcc
run_64bit_tests: true
shell: bash
- name: Windows 2022 Mingw-w64 GCC x86_64
os: windows-2022
compiler: g++
comp: mingw
run_64bit_tests: true
msys_sys: mingw64
msys_env: x86_64-gcc
shell: msys2 {0}
- name: Windows 2022 Mingw-w64 GCC i686
os: windows-2022
compiler: g++
comp: mingw
run_32bit_tests: true
msys_sys: mingw32
msys_env: i686-gcc
shell: msys2 {0}
- name: Windows 2022 Mingw-w64 Clang x86_64
os: windows-2022
compiler: clang++
comp: clang
run_64bit_tests: true
msys_sys: clang64
msys_env: clang-x86_64-clang
shell: msys2 {0}
# - name: Windows 2022 Mingw-w64 GCC x86_64
# os: windows-2022
# compiler: g++
# comp: mingw
# run_64bit_tests: true
# msys_sys: mingw64
# msys_env: x86_64-gcc
# shell: msys2 {0}
# - name: Windows 2022 Mingw-w64 GCC i686
# os: windows-2022
# compiler: g++
# comp: mingw
# run_32bit_tests: true
# msys_sys: mingw32
# msys_env: i686-gcc
# shell: msys2 {0}
# - name: Windows 2022 Mingw-w64 Clang x86_64
# os: windows-2022
# compiler: clang++
# comp: clang
# run_64bit_tests: true
# msys_sys: clang64
# msys_env: clang-x86_64-clang
# shell: msys2 {0}
defaults:
run:
working-directory: src
Expand Down
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -489,8 +489,8 @@ ifeq ($(COMP),clang)
endif

ifeq ($(KERNEL),Darwin)
CXXFLAGS += -mmacosx-version-min=10.13
LDFLAGS += -mmacosx-version-min=10.13
CXXFLAGS += -mmacosx-version-min=10.12
LDFLAGS += -mmacosx-version-min=10.12
ifneq ($(arch),any)
CXXFLAGS += -arch $(arch)
LDFLAGS += -arch $(arch)
Expand Down

0 comments on commit ffd6aa8

Please sign in to comment.