mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #9012 from unknownbrackets/legacy
Remove Symbian from Travis
This commit is contained in:
commit
1aa399c3f5
4 changed files with 2 additions and 29 deletions
22
.travis.sh
22
.travis.sh
|
@ -78,23 +78,6 @@ travis_install() {
|
|||
sed -i 's/-g../&-4.8.2/g' Blackberry/bb.toolchain.cmake
|
||||
fi
|
||||
|
||||
# Symbian NDK: Belle + GCC: 4.8.3
|
||||
if [ "$PPSSPP_BUILD_TYPE" = "Symbian" ]; then
|
||||
sudo apt-get install lib32stdc++6 lib32bz2-1.0 -qq
|
||||
download_extract https://github.com/xsacha/SymbianGCC/releases/download/4.8.3/gcc4.8.3_x86-64.tar.bz2 compiler.tar.bz2
|
||||
download_extract https://github.com/xsacha/SymbianGCC/releases/download/4.8.3/ndk-new.tar.bz2 ndk.tar.bz2
|
||||
|
||||
setup_ccache_script $(pwd)/gcce-ccache $(pwd)/gcc4.8.3_x86-64/bin arm-none-symbianelf-gcc-4.8.3
|
||||
setup_ccache_script $(pwd)/gcce-ccache $(pwd)/gcc4.8.3_x86-64/bin arm-none-symbianelf-gcc
|
||||
setup_ccache_script $(pwd)/gcce-ccache $(pwd)/gcc4.8.3_x86-64/bin arm-none-symbianelf-g++
|
||||
setup_ccache_script $(pwd)/gcce-ccache $(pwd)/gcc4.8.3_x86-64/bin arm-none-symbianelf-c++
|
||||
|
||||
ln -s $(pwd)/gcc4.8.3_x86-64/bin/arm-none-symbianelf-{strip,strings,size,readelf,ranlib,objdump,objcopy,nm,ld,gprof,gcov,gcc-ranlib,gcc-nm,gcc-ar,elfedit,cpp,c++filt,as,ar,addr2line} $(pwd)/gcce-ccache
|
||||
|
||||
export EPOCROOT=$(pwd)/SDKs/SymbianSR1Qt474/ SBS_GCCE483BIN="$(pwd)/gcce-ccache"
|
||||
cp ffmpeg/symbian/armv6/lib/* $EPOCROOT/epoc32/release/armv5/urel/
|
||||
fi
|
||||
|
||||
# Ensure we're using ccache
|
||||
if [[ "$CXX" = "clang" && "$CC" == "clang" ]]; then
|
||||
export CXX="ccache clang" CC="ccache clang"
|
||||
|
@ -135,11 +118,6 @@ travis_script() {
|
|||
|
||||
./b.sh --release --no-package
|
||||
fi
|
||||
if [ "$PPSSPP_BUILD_TYPE" = "Symbian" ]; then
|
||||
export EPOCROOT=$(pwd)/SDKs/SymbianSR1Qt474/ SBS_GCCE483BIN="$(pwd)/gcce-ccache"
|
||||
PATH=$SBS_GCCE483BIN:$(pwd)/gcc4.8.3_x86-64/bin:$(pwd)/tools/sbs/bin:$EPOCROOT/epoc32/tools:$EPOCROOT/bin:$(pwd)/tools/sbs/linux-x86_64-libc2_15/bin:$PATH
|
||||
QMAKE_ARGS="CONFIG+=no_assets" ./b.sh --debug --no-package
|
||||
fi
|
||||
if [ "$PPSSPP_BUILD_TYPE" = "iOS" ]; then
|
||||
./b.sh --ios
|
||||
pushd build
|
||||
|
|
|
@ -62,9 +62,6 @@ matrix:
|
|||
compiler: "gcc blackberry"
|
||||
env: PPSSPP_BUILD_TYPE=Blackberry
|
||||
CMAKE=TRUE
|
||||
- os: linux
|
||||
compiler: "gcc symbian"
|
||||
env: PPSSPP_BUILD_TYPE=Symbian
|
||||
- os: linux
|
||||
compiler: "clang linux"
|
||||
env: PPSSPP_BUILD_TYPE=Linux
|
||||
|
|
|
@ -1600,7 +1600,7 @@ static u32 sceIoDevctl(const char *name, int cmd, u32 argAddr, int argLen, u32 o
|
|||
case 0x02015805:
|
||||
// Unregister MemoryStick's insert/eject callback (mscmhc0)
|
||||
if (Memory::IsValidAddress(argAddr) && argLen >= 4) {
|
||||
u32 cbId = Memory::Read_U32(argAddr);
|
||||
SceUID cbId = Memory::Read_U32(argAddr);
|
||||
size_t slot = (size_t)-1;
|
||||
// We want to only remove one at a time.
|
||||
for (size_t i = 0; i < memStickCallbacks.size(); ++i) {
|
||||
|
@ -1708,7 +1708,7 @@ static u32 sceIoDevctl(const char *name, int cmd, u32 argAddr, int argLen, u32 o
|
|||
case 0x02415822:
|
||||
// MScmUnregisterMSInsertEjectCallback
|
||||
if (Memory::IsValidAddress(argAddr) && argLen >= 4) {
|
||||
u32 cbId = Memory::Read_U32(argAddr);
|
||||
SceUID cbId = Memory::Read_U32(argAddr);
|
||||
size_t slot = (size_t)-1;
|
||||
// We want to only remove one at a time.
|
||||
for (size_t i = 0; i < memStickFatCallbacks.size(); ++i) {
|
||||
|
|
|
@ -204,8 +204,6 @@ bool DrawEngineCommon::TestBoundingBox(void* control_points, int vertexCount, u3
|
|||
// Simplify away bones and morph before proceeding
|
||||
u8 *temp_buffer = decoded + 65536 * 24;
|
||||
NormalizeVertices((u8 *)corners, temp_buffer, (u8 *)control_points, 0, vertexCount, vertType);
|
||||
// Special case for float positions only.
|
||||
const float *ctrl = (const float *)control_points;
|
||||
for (int i = 0; i < vertexCount; i++) {
|
||||
verts[i * 3] = corners[i].pos.x;
|
||||
verts[i * 3 + 1] = corners[i].pos.y;
|
||||
|
|
Loading…
Add table
Reference in a new issue