mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 15:31:26 +12:00
Switch the AppImage building over to gcc from clang
Turns out the current version of clang doesn't support the [[likely]] and [[unlikely]] attributes, so to ensure good performance, we'll be switching to gcc, at least for now.
This commit is contained in:
parent
9d1833c5a8
commit
aa9055f4c3
2 changed files with 5 additions and 5 deletions
|
@ -6,6 +6,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
- NAME="Linux build"
|
- NAME="Linux build"
|
||||||
- COMPILER="gcc"
|
- COMPILER="gcc"
|
||||||
|
- DEPLOY_APPIMAGE="true"
|
||||||
services: docker
|
services: docker
|
||||||
cache: ccache
|
cache: ccache
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
|
@ -16,7 +17,6 @@ jobs:
|
||||||
env:
|
env:
|
||||||
- NAME="Linux build"
|
- NAME="Linux build"
|
||||||
- COMPILER="clang"
|
- COMPILER="clang"
|
||||||
- DEPLOY_APPIMAGE="true"
|
|
||||||
services: docker
|
services: docker
|
||||||
cache: ccache
|
cache: ccache
|
||||||
compiler: clang
|
compiler: clang
|
||||||
|
|
8
3rdparty/CMakeLists.txt
vendored
8
3rdparty/CMakeLists.txt
vendored
|
@ -337,10 +337,10 @@ if(USE_FAUDIO)
|
||||||
if (NOT SDL2_FOUND OR SDL2_VERSION VERSION_LESS 2.0.9)
|
if (NOT SDL2_FOUND OR SDL2_VERSION VERSION_LESS 2.0.9)
|
||||||
message("-- RPCS3: FAudio requires SDL 2.0.9 or newer.")
|
message("-- RPCS3: FAudio requires SDL 2.0.9 or newer.")
|
||||||
else()
|
else()
|
||||||
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared library")
|
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared library")
|
||||||
add_subdirectory(FAudio EXCLUDE_FROM_ALL)
|
add_subdirectory(FAudio EXCLUDE_FROM_ALL)
|
||||||
target_compile_definitions(FAudio INTERFACE -DHAVE_FAUDIO)
|
target_compile_definitions(FAudio INTERFACE -DHAVE_FAUDIO)
|
||||||
set(FAUDIO_TARGET FAudio)
|
set(FAUDIO_TARGET FAudio)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue