[ADD] libs, finally

This commit is contained in:
SemvdH
2021-04-14 14:27:44 +02:00
parent c23650610e
commit c19a30f3c3
17 changed files with 299 additions and 214 deletions

85
.gitignore vendored Normal file
View File

@@ -0,0 +1,85 @@
# Created by https://www.toptal.com/developers/gitignore/api/c,vscode,cmake
# Edit at https://www.toptal.com/developers/gitignore?templates=c,vscode,cmake
### C ###
# Prerequisites
*.d
# Object files
*.o
*.ko
*.obj
*.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
### CMake ###
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps
CMakeUserPresets.json
### CMake Patch ###
# External projects
*-prefix/
### vscode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# End of https://www.toptal.com/developers/gitignore/api/c,vscode,cmake

View File

@@ -15,17 +15,17 @@ endif()
## Define project parameters here
# Name of the project
project(hello_world)
project(cybershot)
# This line adds Vita helper macros, must go after project definition in order
# to build Vita specific artifacts (self/vpk).
include("${VITASDK}/share/vita.cmake" REQUIRED)
## Configuration options for this app
# Display name (under bubble in LiveArea)
set(VITA_APP_NAME "Hello World")
set(VITA_APP_NAME "Cybershot")
# Unique ID must be exactly 9 characters. Recommended: XXXXYYYYY where X =
# unique string of developer and Y = a unique number for this app
set(VITA_TITLEID "VSDK00007")
set(VITA_TITLEID "CBSH01599")
# Optional version string to show in LiveArea's more info screen
set(VITA_VERSION "01.00")

View File

@@ -48,10 +48,10 @@ RM = /usr/bin/cmake -E remove -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/semtex99/vita/samples/hello_world
CMAKE_SOURCE_DIR = /home/semtex99/vita/samples/cybershot-PSVita
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/semtex99/vita/samples/hello_world
CMAKE_BINARY_DIR = /home/semtex99/vita/samples/cybershot-PSVita
#=============================================================================
# Targets provided globally by CMake.
@@ -80,9 +80,9 @@ edit_cache/fast: edit_cache
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/semtex99/vita/samples/hello_world/CMakeFiles /home/semtex99/vita/samples/hello_world/CMakeFiles/progress.marks
$(CMAKE_COMMAND) -E cmake_progress_start /home/semtex99/vita/samples/cybershot-PSVita/CMakeFiles /home/semtex99/vita/samples/cybershot-PSVita/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/semtex99/vita/samples/hello_world/CMakeFiles 0
$(CMAKE_COMMAND) -E cmake_progress_start /home/semtex99/vita/samples/cybershot-PSVita/CMakeFiles 0
.PHONY : all
# The main clean target
@@ -111,43 +111,43 @@ depend:
.PHONY : depend
#=============================================================================
# Target rules for targets named hello_world.vpk
# Target rules for targets named cybershot.vpk
# Build rule for target.
hello_world.vpk: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 hello_world.vpk
.PHONY : hello_world.vpk
cybershot.vpk: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 cybershot.vpk
.PHONY : cybershot.vpk
# fast build rule for target.
hello_world.vpk/fast:
$(MAKE) -f CMakeFiles/hello_world.vpk.dir/build.make CMakeFiles/hello_world.vpk.dir/build
.PHONY : hello_world.vpk/fast
cybershot.vpk/fast:
$(MAKE) -f CMakeFiles/cybershot.vpk.dir/build.make CMakeFiles/cybershot.vpk.dir/build
.PHONY : cybershot.vpk/fast
#=============================================================================
# Target rules for targets named hello_world.self
# Target rules for targets named cybershot.self
# Build rule for target.
hello_world.self: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 hello_world.self
.PHONY : hello_world.self
cybershot.self: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 cybershot.self
.PHONY : cybershot.self
# fast build rule for target.
hello_world.self/fast:
$(MAKE) -f CMakeFiles/hello_world.self.dir/build.make CMakeFiles/hello_world.self.dir/build
.PHONY : hello_world.self/fast
cybershot.self/fast:
$(MAKE) -f CMakeFiles/cybershot.self.dir/build.make CMakeFiles/cybershot.self.dir/build
.PHONY : cybershot.self/fast
#=============================================================================
# Target rules for targets named hello_world
# Target rules for targets named cybershot
# Build rule for target.
hello_world: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 hello_world
.PHONY : hello_world
cybershot: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 cybershot
.PHONY : cybershot
# fast build rule for target.
hello_world/fast:
$(MAKE) -f CMakeFiles/hello_world.dir/build.make CMakeFiles/hello_world.dir/build
.PHONY : hello_world/fast
cybershot/fast:
$(MAKE) -f CMakeFiles/cybershot.dir/build.make CMakeFiles/cybershot.dir/build
.PHONY : cybershot/fast
home/semtex99/vita/samples/common/debugScreen.obj: home/semtex99/vita/samples/common/debugScreen.c.obj
@@ -155,7 +155,7 @@ home/semtex99/vita/samples/common/debugScreen.obj: home/semtex99/vita/samples/co
# target to build an object file
home/semtex99/vita/samples/common/debugScreen.c.obj:
$(MAKE) -f CMakeFiles/hello_world.dir/build.make CMakeFiles/hello_world.dir/home/semtex99/vita/samples/common/debugScreen.c.obj
$(MAKE) -f CMakeFiles/cybershot.dir/build.make CMakeFiles/cybershot.dir/home/semtex99/vita/samples/common/debugScreen.c.obj
.PHONY : home/semtex99/vita/samples/common/debugScreen.c.obj
home/semtex99/vita/samples/common/debugScreen.i: home/semtex99/vita/samples/common/debugScreen.c.i
@@ -164,7 +164,7 @@ home/semtex99/vita/samples/common/debugScreen.i: home/semtex99/vita/samples/comm
# target to preprocess a source file
home/semtex99/vita/samples/common/debugScreen.c.i:
$(MAKE) -f CMakeFiles/hello_world.dir/build.make CMakeFiles/hello_world.dir/home/semtex99/vita/samples/common/debugScreen.c.i
$(MAKE) -f CMakeFiles/cybershot.dir/build.make CMakeFiles/cybershot.dir/home/semtex99/vita/samples/common/debugScreen.c.i
.PHONY : home/semtex99/vita/samples/common/debugScreen.c.i
home/semtex99/vita/samples/common/debugScreen.s: home/semtex99/vita/samples/common/debugScreen.c.s
@@ -173,7 +173,7 @@ home/semtex99/vita/samples/common/debugScreen.s: home/semtex99/vita/samples/comm
# target to generate assembly for a file
home/semtex99/vita/samples/common/debugScreen.c.s:
$(MAKE) -f CMakeFiles/hello_world.dir/build.make CMakeFiles/hello_world.dir/home/semtex99/vita/samples/common/debugScreen.c.s
$(MAKE) -f CMakeFiles/cybershot.dir/build.make CMakeFiles/cybershot.dir/home/semtex99/vita/samples/common/debugScreen.c.s
.PHONY : home/semtex99/vita/samples/common/debugScreen.c.s
src/main.obj: src/main.c.obj
@@ -182,7 +182,7 @@ src/main.obj: src/main.c.obj
# target to build an object file
src/main.c.obj:
$(MAKE) -f CMakeFiles/hello_world.dir/build.make CMakeFiles/hello_world.dir/src/main.c.obj
$(MAKE) -f CMakeFiles/cybershot.dir/build.make CMakeFiles/cybershot.dir/src/main.c.obj
.PHONY : src/main.c.obj
src/main.i: src/main.c.i
@@ -191,7 +191,7 @@ src/main.i: src/main.c.i
# target to preprocess a source file
src/main.c.i:
$(MAKE) -f CMakeFiles/hello_world.dir/build.make CMakeFiles/hello_world.dir/src/main.c.i
$(MAKE) -f CMakeFiles/cybershot.dir/build.make CMakeFiles/cybershot.dir/src/main.c.i
.PHONY : src/main.c.i
src/main.s: src/main.c.s
@@ -200,7 +200,7 @@ src/main.s: src/main.c.s
# target to generate assembly for a file
src/main.c.s:
$(MAKE) -f CMakeFiles/hello_world.dir/build.make CMakeFiles/hello_world.dir/src/main.c.s
$(MAKE) -f CMakeFiles/cybershot.dir/build.make CMakeFiles/cybershot.dir/src/main.c.s
.PHONY : src/main.c.s
# Help Target
@@ -211,9 +211,9 @@ help:
@echo "... depend"
@echo "... rebuild_cache"
@echo "... edit_cache"
@echo "... hello_world.vpk"
@echo "... hello_world.self"
@echo "... hello_world"
@echo "... cybershot.vpk"
@echo "... cybershot.self"
@echo "... cybershot"
@echo "... home/semtex99/vita/samples/common/debugScreen.obj"
@echo "... home/semtex99/vita/samples/common/debugScreen.i"
@echo "... home/semtex99/vita/samples/common/debugScreen.s"

View File

@@ -67,7 +67,7 @@
}
],
"type" : "INTERNAL",
"value" : "/home/semtex99/vita/samples/hello_world2/build"
"value" : "/home/semtex99/vita/samples/cybershot-PSVita/build"
},
{
"name" : "CMAKE_CACHE_MAJOR_VERSION",
@@ -591,7 +591,7 @@
}
],
"type" : "INTERNAL",
"value" : "/home/semtex99/vita/samples/hello_world2"
"value" : "/home/semtex99/vita/samples/cybershot-PSVita"
},
{
"name" : "CMAKE_INSTALL_PREFIX",
@@ -823,7 +823,7 @@
}
],
"type" : "STATIC",
"value" : "hello_world"
"value" : "cybershot"
},
{
"name" : "CMAKE_RANLIB",
@@ -1250,7 +1250,7 @@
"value" : ""
},
{
"name" : "hello_world_BINARY_DIR",
"name" : "cybershot_BINARY_DIR",
"properties" :
[
{
@@ -1259,10 +1259,10 @@
}
],
"type" : "STATIC",
"value" : "/home/semtex99/vita/samples/hello_world2/build"
"value" : "/home/semtex99/vita/samples/cybershot-PSVita/build"
},
{
"name" : "hello_world_SOURCE_DIR",
"name" : "cybershot_SOURCE_DIR",
"properties" :
[
{
@@ -1271,7 +1271,7 @@
}
],
"type" : "STATIC",
"value" : "/home/semtex99/vita/samples/hello_world2"
"value" : "/home/semtex99/vita/samples/cybershot-PSVita"
}
],
"kind" : "cache",

View File

@@ -28,7 +28,7 @@
[
0
],
"name" : "hello_world",
"name" : "cybershot",
"targetIndexes" :
[
0,
@@ -41,23 +41,23 @@
[
{
"directoryIndex" : 0,
"id" : "hello_world::@6890427a1f51a3e7e1df",
"jsonFile" : "target-hello_world-Debug-56d898603bae97d3019a.json",
"name" : "hello_world",
"id" : "cybershot::@6890427a1f51a3e7e1df",
"jsonFile" : "target-cybershot-Debug-d55a071be6f01be45955.json",
"name" : "cybershot",
"projectIndex" : 0
},
{
"directoryIndex" : 0,
"id" : "hello_world.self::@6890427a1f51a3e7e1df",
"jsonFile" : "target-hello_world.self-Debug-6d68fe6fa28e42298fb5.json",
"name" : "hello_world.self",
"id" : "cybershot.self::@6890427a1f51a3e7e1df",
"jsonFile" : "target-cybershot.self-Debug-22f7385e9f905f5b0ca6.json",
"name" : "cybershot.self",
"projectIndex" : 0
},
{
"directoryIndex" : 0,
"id" : "hello_world.vpk::@6890427a1f51a3e7e1df",
"jsonFile" : "target-hello_world.vpk-Debug-b4f50dfcf6014a3be870.json",
"name" : "hello_world.vpk",
"id" : "cybershot.vpk::@6890427a1f51a3e7e1df",
"jsonFile" : "target-cybershot.vpk-Debug-d00f9ae455939504ff79.json",
"name" : "cybershot.vpk",
"projectIndex" : 0
}
]
@@ -66,8 +66,8 @@
"kind" : "codemodel",
"paths" :
{
"build" : "/home/semtex99/vita/samples/hello_world2/build",
"source" : "/home/semtex99/vita/samples/hello_world2"
"build" : "/home/semtex99/vita/samples/cybershot-PSVita/build",
"source" : "/home/semtex99/vita/samples/cybershot-PSVita"
},
"version" :
{

View File

@@ -25,7 +25,7 @@
"objects" :
[
{
"jsonFile" : "codemodel-v2-e2d496adb238cc9b8d89.json",
"jsonFile" : "codemodel-v2-eea07132053540bf1aa6.json",
"kind" : "codemodel",
"version" :
{
@@ -34,7 +34,7 @@
}
},
{
"jsonFile" : "cache-v2-891329016e9b93927130.json",
"jsonFile" : "cache-v2-7944fd4c8d220e544098.json",
"kind" : "cache",
"version" :
{
@@ -63,7 +63,7 @@
"responses" :
[
{
"jsonFile" : "cache-v2-891329016e9b93927130.json",
"jsonFile" : "cache-v2-7944fd4c8d220e544098.json",
"kind" : "cache",
"version" :
{
@@ -72,7 +72,7 @@
}
},
{
"jsonFile" : "codemodel-v2-e2d496adb238cc9b8d89.json",
"jsonFile" : "codemodel-v2-eea07132053540bf1aa6.json",
"kind" : "codemodel",
"version" :
{

View File

@@ -2,7 +2,7 @@
"artifacts" :
[
{
"path" : "hello_world"
"path" : "cybershot"
}
],
"backtrace" : 1,
@@ -56,7 +56,7 @@
[
{
"backtrace" : 3,
"path" : "/home/semtex99/vita/samples/hello_world2/../common"
"path" : "/home/semtex99/vita/samples/cybershot-PSVita/../common"
}
],
"language" : "C",
@@ -67,7 +67,7 @@
]
}
],
"id" : "hello_world::@6890427a1f51a3e7e1df",
"id" : "cybershot::@6890427a1f51a3e7e1df",
"link" :
{
"commandFragments" :
@@ -82,7 +82,7 @@
},
{
"backtrace" : 2,
"fragment" : "-L/home/semtex99/vita/samples/hello_world2/build",
"fragment" : "-L/home/semtex99/vita/samples/cybershot-PSVita/build",
"role" : "libraryPath"
},
{
@@ -152,8 +152,8 @@
],
"language" : "C"
},
"name" : "hello_world",
"nameOnDisk" : "hello_world",
"name" : "cybershot",
"nameOnDisk" : "cybershot",
"paths" :
{
"build" : ".",

View File

@@ -42,11 +42,11 @@
[
{
"backtrace" : 3,
"id" : "hello_world::@6890427a1f51a3e7e1df"
"id" : "cybershot::@6890427a1f51a3e7e1df"
}
],
"id" : "hello_world.self::@6890427a1f51a3e7e1df",
"name" : "hello_world.self",
"id" : "cybershot.self::@6890427a1f51a3e7e1df",
"name" : "cybershot.self",
"paths" :
{
"build" : ".",
@@ -76,25 +76,25 @@
{
"backtrace" : 2,
"isGenerated" : true,
"path" : "build/CMakeFiles/hello_world.self",
"path" : "build/CMakeFiles/cybershot.self",
"sourceGroupIndex" : 0
},
{
"backtrace" : 0,
"isGenerated" : true,
"path" : "build/CMakeFiles/hello_world.self.rule",
"path" : "build/CMakeFiles/cybershot.self.rule",
"sourceGroupIndex" : 1
},
{
"backtrace" : 0,
"isGenerated" : true,
"path" : "build/hello_world.self.out.rule",
"path" : "build/cybershot.self.out.rule",
"sourceGroupIndex" : 1
},
{
"backtrace" : 0,
"isGenerated" : true,
"path" : "build/hello_world.velf.rule",
"path" : "build/cybershot.velf.rule",
"sourceGroupIndex" : 1
}
],

View File

@@ -42,11 +42,11 @@
[
{
"backtrace" : 3,
"id" : "hello_world.self::@6890427a1f51a3e7e1df"
"id" : "cybershot.self::@6890427a1f51a3e7e1df"
}
],
"id" : "hello_world.vpk::@6890427a1f51a3e7e1df",
"name" : "hello_world.vpk",
"id" : "cybershot.vpk::@6890427a1f51a3e7e1df",
"name" : "cybershot.vpk",
"paths" :
{
"build" : ".",
@@ -76,25 +76,25 @@
{
"backtrace" : 2,
"isGenerated" : true,
"path" : "build/CMakeFiles/hello_world.vpk",
"path" : "build/CMakeFiles/cybershot.vpk",
"sourceGroupIndex" : 0
},
{
"backtrace" : 0,
"isGenerated" : true,
"path" : "build/CMakeFiles/hello_world.vpk.rule",
"path" : "build/CMakeFiles/cybershot.vpk.rule",
"sourceGroupIndex" : 1
},
{
"backtrace" : 0,
"isGenerated" : true,
"path" : "build/hello_world.vpk.out.rule",
"path" : "build/cybershot.vpk.out.rule",
"sourceGroupIndex" : 1
},
{
"backtrace" : 0,
"isGenerated" : true,
"path" : "build/hello_world.vpk_param.sfo.rule",
"path" : "build/cybershot.vpk_param.sfo.rule",
"sourceGroupIndex" : 1
}
],

View File

@@ -1,5 +1,5 @@
# This is the CMakeCache file.
# For build in directory: /home/semtex99/vita/samples/hello_world2/build
# For build in directory: /home/semtex99/vita/samples/cybershot-PSVita/build
# It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
@@ -143,7 +143,7 @@ CMAKE_PROJECT_DESCRIPTION:STATIC=
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=hello_world
CMAKE_PROJECT_NAME:STATIC=cybershot
//ranlib
CMAKE_RANLIB:PATH=/usr/local/vitasdk/bin/arm-vita-eabi-ranlib
@@ -243,10 +243,10 @@ VITA_PACK_VPK:PATH=/usr/local/vitasdk/bin/vita-pack-vpk
VITA_PACK_VPK_FLAGS:STRING=
//Value Computed by CMake
hello_world_BINARY_DIR:STATIC=/home/semtex99/vita/samples/hello_world2/build
cybershot_BINARY_DIR:STATIC=/home/semtex99/vita/samples/cybershot-PSVita/build
//Value Computed by CMake
hello_world_SOURCE_DIR:STATIC=/home/semtex99/vita/samples/hello_world2
cybershot_SOURCE_DIR:STATIC=/home/semtex99/vita/samples/cybershot-PSVita
########################
@@ -258,7 +258,7 @@ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/semtex99/vita/samples/hello_world2/build
CMAKE_CACHEFILE_DIR:INTERNAL=/home/semtex99/vita/samples/cybershot-PSVita/build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
@@ -331,7 +331,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/semtex99/vita/samples/hello_world2
CMAKE_HOME_DIRECTORY:INTERNAL=/home/semtex99/vita/samples/cybershot-PSVita
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM

View File

@@ -11,7 +11,7 @@ The output was:
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "/home/semtex99/vita/samples/hello_world2/build/CMakeFiles/3.16.3/CompilerIdC/a.out"
The C compiler identification is GNU, found in "/home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/3.16.3/CompilerIdC/a.out"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/local/vitasdk/bin/arm-vita-eabi-g++
@@ -24,20 +24,20 @@ The output was:
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "/home/semtex99/vita/samples/hello_world2/build/CMakeFiles/3.16.3/CompilerIdCXX/a.out"
The CXX compiler identification is GNU, found in "/home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/3.16.3/CompilerIdCXX/a.out"
Determining if the C compiler works passed with the following output:
Change Dir: /home/semtex99/vita/samples/hello_world2/build/CMakeFiles/CMakeTmp
Change Dir: /home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_18d25 && [1/2] Building C object CMakeFiles/cmTC_18d25.dir/testCCompiler.c.obj
[2/2] Linking C executable cmTC_18d25
Run Build Command(s):/usr/bin/ninja cmTC_5c59d && [1/2] Building C object CMakeFiles/cmTC_5c59d.dir/testCCompiler.c.obj
[2/2] Linking C executable cmTC_5c59d
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/semtex99/vita/samples/hello_world2/build/CMakeFiles/CMakeTmp
Change Dir: /home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_4822f && [1/2] Building C object CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj
Run Build Command(s):/usr/bin/ninja cmTC_f4800 && [1/2] Building C object CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj
Using built-in specs.
COLLECT_GCC=/usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0
Target: arm-vita-eabi
@@ -45,8 +45,8 @@ Configured with: /home/travis/build/vitasdk/autobuilds/buildscripts/build/gcc-fi
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 10.1.0 (GNU Tools for ARM Embedded Processors)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/cc1 -quiet -v -iprefix /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/ -isysroot /usr/local/vitasdk/bin/../arm-vita-eabi -D__USES_INITFINI__ /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=cortex-a9 -mfloat-abi=hard -mfpu=neon -mthumb -march=armv7-a+simd -auxbase-strip CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj -version -o /tmp/ccsx2Bza.s
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/cc1 -quiet -v -iprefix /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/ -isysroot /usr/local/vitasdk/bin/../arm-vita-eabi -D__USES_INITFINI__ /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=cortex-a9 -mfloat-abi=hard -mfpu=neon -mthumb -march=armv7-a+simd -auxbase-strip CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj -version -o /tmp/cc1BxBAW.s
GNU C17 (GNU Tools for ARM Embedded Processors) version 10.1.0 (arm-vita-eabi)
compiled by GNU C version 4.8.4, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP
@@ -67,13 +67,13 @@ GNU C17 (GNU Tools for ARM Embedded Processors) version 10.1.0 (arm-vita-eabi)
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 4f9912cf5da5c2fd4aadc08ec18c7123
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=neon -meabi=5 -o CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj /tmp/ccsx2Bza.s
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=neon -meabi=5 -o CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj /tmp/cc1BxBAW.s
GNU assembler version 2.34 (arm-vita-eabi) using BFD version (GNU Tools for ARM Embedded Processors) 2.34
COMPILER_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/
LIBRARY_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/:/usr/local/vitasdk/bin/../arm-vita-eabi/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
[2/2] Linking C executable cmTC_4822f
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
[2/2] Linking C executable cmTC_f4800
Using built-in specs.
COLLECT_GCC=/usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0
COLLECT_LTO_WRAPPER=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper
@@ -84,9 +84,9 @@ Supported LTO compression algorithms: zlib
gcc version 10.1.0 (GNU Tools for ARM Embedded Processors)
COMPILER_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/
LIBRARY_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/:/usr/local/vitasdk/bin/../arm-vita-eabi/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4822f' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2 -plugin /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so -plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc5NvuQt.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lSceRtc_stub -plugin-opt=-pass-through=-lSceSysmem_stub -plugin-opt=-pass-through=-lSceKernelThreadMgr_stub -plugin-opt=-pass-through=-lSceKernelModulemgr_stub -plugin-opt=-pass-through=-lSceIofilemgr_stub -plugin-opt=-pass-through=-lSceProcessmgr_stub -plugin-opt=-pass-through=-lSceLibKernel_stub -plugin-opt=-pass-through=-lSceNet_stub --sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi -X -o cmTC_4822f /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0 -L/usr/local/vitasdk/bin/../lib/gcc -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib -L/usr/local/vitasdk/bin/../arm-vita-eabi/lib -q -z nocopyreloc CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj --start-group -lgcc -lc -lSceRtc_stub -lSceSysmem_stub -lSceKernelThreadMgr_stub -lSceKernelModulemgr_stub -lSceIofilemgr_stub -lSceProcessmgr_stub -lSceLibKernel_stub -lSceNet_stub --end-group /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtend.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4822f' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f4800' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2 -plugin /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so -plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccFVdVLj.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lSceRtc_stub -plugin-opt=-pass-through=-lSceSysmem_stub -plugin-opt=-pass-through=-lSceKernelThreadMgr_stub -plugin-opt=-pass-through=-lSceKernelModulemgr_stub -plugin-opt=-pass-through=-lSceIofilemgr_stub -plugin-opt=-pass-through=-lSceProcessmgr_stub -plugin-opt=-pass-through=-lSceLibKernel_stub -plugin-opt=-pass-through=-lSceNet_stub --sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi -X -o cmTC_f4800 /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0 -L/usr/local/vitasdk/bin/../lib/gcc -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib -L/usr/local/vitasdk/bin/../arm-vita-eabi/lib -q -z nocopyreloc CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj --start-group -lgcc -lc -lSceRtc_stub -lSceSysmem_stub -lSceKernelThreadMgr_stub -lSceKernelModulemgr_stub -lSceIofilemgr_stub -lSceProcessmgr_stub -lSceLibKernel_stub -lSceNet_stub --end-group /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtend.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f4800' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
@@ -105,9 +105,9 @@ Parsed C implicit include dir info from above output: rv=done
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-vita-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/semtex99/vita/samples/hello_world2/build/CMakeFiles/CMakeTmp]
ignore line: [Change Dir: /home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/ninja cmTC_4822f && [1/2] Building C object CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj]
ignore line: [Run Build Command(s):/usr/bin/ninja cmTC_f4800 && [1/2] Building C object CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0]
ignore line: [Target: arm-vita-eabi]
@@ -115,8 +115,8 @@ Parsed C implicit link information from above output:
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 10.1.0 (GNU Tools for ARM Embedded Processors) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/cc1 -quiet -v -iprefix /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/ -isysroot /usr/local/vitasdk/bin/../arm-vita-eabi -D__USES_INITFINI__ /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=cortex-a9 -mfloat-abi=hard -mfpu=neon -mthumb -march=armv7-a+simd -auxbase-strip CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj -version -o /tmp/ccsx2Bza.s]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/cc1 -quiet -v -iprefix /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/ -isysroot /usr/local/vitasdk/bin/../arm-vita-eabi -D__USES_INITFINI__ /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=cortex-a9 -mfloat-abi=hard -mfpu=neon -mthumb -march=armv7-a+simd -auxbase-strip CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj -version -o /tmp/cc1BxBAW.s]
ignore line: [GNU C17 (GNU Tools for ARM Embedded Processors) version 10.1.0 (arm-vita-eabi)]
ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.1.2 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: []
@@ -137,13 +137,13 @@ Parsed C implicit link information from above output:
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 4f9912cf5da5c2fd4aadc08ec18c7123]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=neon -meabi=5 -o CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj /tmp/ccsx2Bza.s]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=neon -meabi=5 -o CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj /tmp/cc1BxBAW.s]
ignore line: [GNU assembler version 2.34 (arm-vita-eabi) using BFD version (GNU Tools for ARM Embedded Processors) 2.34]
ignore line: [COMPILER_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/]
ignore line: [LIBRARY_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/:/usr/local/vitasdk/bin/../arm-vita-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [[2/2] Linking C executable cmTC_4822f]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [[2/2] Linking C executable cmTC_f4800]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0]
ignore line: [COLLECT_LTO_WRAPPER=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper]
@@ -154,13 +154,13 @@ Parsed C implicit link information from above output:
ignore line: [gcc version 10.1.0 (GNU Tools for ARM Embedded Processors) ]
ignore line: [COMPILER_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/]
ignore line: [LIBRARY_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/:/usr/local/vitasdk/bin/../arm-vita-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4822f' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
link line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2 -plugin /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so -plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc5NvuQt.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lSceRtc_stub -plugin-opt=-pass-through=-lSceSysmem_stub -plugin-opt=-pass-through=-lSceKernelThreadMgr_stub -plugin-opt=-pass-through=-lSceKernelModulemgr_stub -plugin-opt=-pass-through=-lSceIofilemgr_stub -plugin-opt=-pass-through=-lSceProcessmgr_stub -plugin-opt=-pass-through=-lSceLibKernel_stub -plugin-opt=-pass-through=-lSceNet_stub --sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi -X -o cmTC_4822f /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0 -L/usr/local/vitasdk/bin/../lib/gcc -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib -L/usr/local/vitasdk/bin/../arm-vita-eabi/lib -q -z nocopyreloc CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj --start-group -lgcc -lc -lSceRtc_stub -lSceSysmem_stub -lSceKernelThreadMgr_stub -lSceKernelModulemgr_stub -lSceIofilemgr_stub -lSceProcessmgr_stub -lSceLibKernel_stub -lSceNet_stub --end-group /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtend.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtn.o]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f4800' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
link line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2 -plugin /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so -plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccFVdVLj.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lSceRtc_stub -plugin-opt=-pass-through=-lSceSysmem_stub -plugin-opt=-pass-through=-lSceKernelThreadMgr_stub -plugin-opt=-pass-through=-lSceKernelModulemgr_stub -plugin-opt=-pass-through=-lSceIofilemgr_stub -plugin-opt=-pass-through=-lSceProcessmgr_stub -plugin-opt=-pass-through=-lSceLibKernel_stub -plugin-opt=-pass-through=-lSceNet_stub --sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi -X -o cmTC_f4800 /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0 -L/usr/local/vitasdk/bin/../lib/gcc -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib -L/usr/local/vitasdk/bin/../arm-vita-eabi/lib -q -z nocopyreloc CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj --start-group -lgcc -lc -lSceRtc_stub -lSceSysmem_stub -lSceKernelThreadMgr_stub -lSceKernelModulemgr_stub -lSceIofilemgr_stub -lSceProcessmgr_stub -lSceLibKernel_stub -lSceNet_stub --end-group /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtend.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtn.o]
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cc5NvuQt.res] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccFVdVLj.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lSceRtc_stub] ==> ignore
@@ -174,7 +174,7 @@ Parsed C implicit link information from above output:
arg [--sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi] ==> ignore
arg [-X] ==> ignore
arg [-o] ==> ignore
arg [cmTC_4822f] ==> ignore
arg [cmTC_f4800] ==> ignore
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o] ==> ignore
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o] ==> ignore
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o] ==> ignore
@@ -184,7 +184,7 @@ Parsed C implicit link information from above output:
arg [-L/usr/local/vitasdk/bin/../arm-vita-eabi/lib] ==> dir [/usr/local/vitasdk/bin/../arm-vita-eabi/lib]
arg [-q] ==> ignore
arg [-znocopyreloc] ==> ignore
arg [CMakeFiles/cmTC_4822f.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [CMakeFiles/cmTC_f4800.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
@@ -209,17 +209,17 @@ Parsed C implicit link information from above output:
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/semtex99/vita/samples/hello_world2/build/CMakeFiles/CMakeTmp
Change Dir: /home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_91dc5 && [1/2] Building CXX object CMakeFiles/cmTC_91dc5.dir/testCXXCompiler.cxx.obj
[2/2] Linking CXX executable cmTC_91dc5
Run Build Command(s):/usr/bin/ninja cmTC_5f69a && [1/2] Building CXX object CMakeFiles/cmTC_5f69a.dir/testCXXCompiler.cxx.obj
[2/2] Linking CXX executable cmTC_5f69a
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/semtex99/vita/samples/hello_world2/build/CMakeFiles/CMakeTmp
Change Dir: /home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/ninja cmTC_7f552 && [1/2] Building CXX object CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj
Run Build Command(s):/usr/bin/ninja cmTC_17243 && [1/2] Building CXX object CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj
Using built-in specs.
COLLECT_GCC=/usr/local/vitasdk/bin/arm-vita-eabi-g++
Target: arm-vita-eabi
@@ -227,8 +227,8 @@ Configured with: /home/travis/build/vitasdk/autobuilds/buildscripts/build/gcc-fi
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 10.1.0 (GNU Tools for ARM Embedded Processors)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/cc1plus -quiet -v -iprefix /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/ -isysroot /usr/local/vitasdk/bin/../arm-vita-eabi -D__USES_INITFINI__ /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=cortex-a9 -mfloat-abi=hard -mfpu=neon -mthumb -march=armv7-a+simd -auxbase-strip CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj -version -o /tmp/ccj6yD5K.s
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/cc1plus -quiet -v -iprefix /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/ -isysroot /usr/local/vitasdk/bin/../arm-vita-eabi -D__USES_INITFINI__ /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=cortex-a9 -mfloat-abi=hard -mfpu=neon -mthumb -march=armv7-a+simd -auxbase-strip CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj -version -o /tmp/ccSEUKvu.s
GNU C++14 (GNU Tools for ARM Embedded Processors) version 10.1.0 (arm-vita-eabi)
compiled by GNU C version 4.8.4, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP
@@ -255,13 +255,13 @@ GNU C++14 (GNU Tools for ARM Embedded Processors) version 10.1.0 (arm-vita-eabi)
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: feb3ae5573655982e0bc7d8bf281e50e
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=neon -meabi=5 -o CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccj6yD5K.s
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=neon -meabi=5 -o CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccSEUKvu.s
GNU assembler version 2.34 (arm-vita-eabi) using BFD version (GNU Tools for ARM Embedded Processors) 2.34
COMPILER_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/
LIBRARY_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/:/usr/local/vitasdk/bin/../arm-vita-eabi/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
[2/2] Linking CXX executable cmTC_7f552
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
[2/2] Linking CXX executable cmTC_17243
Using built-in specs.
COLLECT_GCC=/usr/local/vitasdk/bin/arm-vita-eabi-g++
COLLECT_LTO_WRAPPER=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper
@@ -272,9 +272,9 @@ Supported LTO compression algorithms: zlib
gcc version 10.1.0 (GNU Tools for ARM Embedded Processors)
COMPILER_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/
LIBRARY_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/:/usr/local/vitasdk/bin/../arm-vita-eabi/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7f552' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2 -plugin /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so -plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccBO5oR5.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lSceRtc_stub -plugin-opt=-pass-through=-lSceSysmem_stub -plugin-opt=-pass-through=-lSceKernelThreadMgr_stub -plugin-opt=-pass-through=-lSceKernelModulemgr_stub -plugin-opt=-pass-through=-lSceIofilemgr_stub -plugin-opt=-pass-through=-lSceProcessmgr_stub -plugin-opt=-pass-through=-lSceLibKernel_stub -plugin-opt=-pass-through=-lSceNet_stub --sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi -X -o cmTC_7f552 /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0 -L/usr/local/vitasdk/bin/../lib/gcc -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib -L/usr/local/vitasdk/bin/../arm-vita-eabi/lib -q -z nocopyreloc CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm --start-group -lgcc -lc -lSceRtc_stub -lSceSysmem_stub -lSceKernelThreadMgr_stub -lSceKernelModulemgr_stub -lSceIofilemgr_stub -lSceProcessmgr_stub -lSceLibKernel_stub -lSceNet_stub --end-group /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtend.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7f552' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_17243' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2 -plugin /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so -plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc0SZbWM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lSceRtc_stub -plugin-opt=-pass-through=-lSceSysmem_stub -plugin-opt=-pass-through=-lSceKernelThreadMgr_stub -plugin-opt=-pass-through=-lSceKernelModulemgr_stub -plugin-opt=-pass-through=-lSceIofilemgr_stub -plugin-opt=-pass-through=-lSceProcessmgr_stub -plugin-opt=-pass-through=-lSceLibKernel_stub -plugin-opt=-pass-through=-lSceNet_stub --sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi -X -o cmTC_17243 /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0 -L/usr/local/vitasdk/bin/../lib/gcc -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib -L/usr/local/vitasdk/bin/../arm-vita-eabi/lib -q -z nocopyreloc CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm --start-group -lgcc -lc -lSceRtc_stub -lSceSysmem_stub -lSceKernelThreadMgr_stub -lSceKernelModulemgr_stub -lSceIofilemgr_stub -lSceProcessmgr_stub -lSceLibKernel_stub -lSceNet_stub --end-group /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtend.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_17243' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd'
@@ -299,9 +299,9 @@ Parsed CXX implicit include dir info from above output: rv=done
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-vita-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/semtex99/vita/samples/hello_world2/build/CMakeFiles/CMakeTmp]
ignore line: [Change Dir: /home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/ninja cmTC_7f552 && [1/2] Building CXX object CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj]
ignore line: [Run Build Command(s):/usr/bin/ninja cmTC_17243 && [1/2] Building CXX object CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/local/vitasdk/bin/arm-vita-eabi-g++]
ignore line: [Target: arm-vita-eabi]
@@ -309,8 +309,8 @@ Parsed CXX implicit link information from above output:
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 10.1.0 (GNU Tools for ARM Embedded Processors) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/cc1plus -quiet -v -iprefix /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/ -isysroot /usr/local/vitasdk/bin/../arm-vita-eabi -D__USES_INITFINI__ /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=cortex-a9 -mfloat-abi=hard -mfpu=neon -mthumb -march=armv7-a+simd -auxbase-strip CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj -version -o /tmp/ccj6yD5K.s]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/cc1plus -quiet -v -iprefix /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/ -isysroot /usr/local/vitasdk/bin/../arm-vita-eabi -D__USES_INITFINI__ /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=cortex-a9 -mfloat-abi=hard -mfpu=neon -mthumb -march=armv7-a+simd -auxbase-strip CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj -version -o /tmp/ccSEUKvu.s]
ignore line: [GNU C++14 (GNU Tools for ARM Embedded Processors) version 10.1.0 (arm-vita-eabi)]
ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.1.2 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: []
@@ -337,13 +337,13 @@ Parsed CXX implicit link information from above output:
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: feb3ae5573655982e0bc7d8bf281e50e]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=neon -meabi=5 -o CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccj6yD5K.s]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=neon -meabi=5 -o CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccSEUKvu.s]
ignore line: [GNU assembler version 2.34 (arm-vita-eabi) using BFD version (GNU Tools for ARM Embedded Processors) 2.34]
ignore line: [COMPILER_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/]
ignore line: [LIBRARY_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/:/usr/local/vitasdk/bin/../arm-vita-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [[2/2] Linking CXX executable cmTC_7f552]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
ignore line: [[2/2] Linking CXX executable cmTC_17243]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/local/vitasdk/bin/arm-vita-eabi-g++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper]
@@ -354,13 +354,13 @@ Parsed CXX implicit link information from above output:
ignore line: [gcc version 10.1.0 (GNU Tools for ARM Embedded Processors) ]
ignore line: [COMPILER_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/bin/]
ignore line: [LIBRARY_PATH=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/:/usr/local/vitasdk/bin/../lib/gcc/:/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/:/usr/local/vitasdk/bin/../arm-vita-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7f552' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
link line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2 -plugin /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so -plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccBO5oR5.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lSceRtc_stub -plugin-opt=-pass-through=-lSceSysmem_stub -plugin-opt=-pass-through=-lSceKernelThreadMgr_stub -plugin-opt=-pass-through=-lSceKernelModulemgr_stub -plugin-opt=-pass-through=-lSceIofilemgr_stub -plugin-opt=-pass-through=-lSceProcessmgr_stub -plugin-opt=-pass-through=-lSceLibKernel_stub -plugin-opt=-pass-through=-lSceNet_stub --sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi -X -o cmTC_7f552 /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0 -L/usr/local/vitasdk/bin/../lib/gcc -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib -L/usr/local/vitasdk/bin/../arm-vita-eabi/lib -q -z nocopyreloc CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm --start-group -lgcc -lc -lSceRtc_stub -lSceSysmem_stub -lSceKernelThreadMgr_stub -lSceKernelModulemgr_stub -lSceIofilemgr_stub -lSceProcessmgr_stub -lSceLibKernel_stub -lSceNet_stub --end-group /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtend.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtn.o]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_17243' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=neon' '-mthumb' '-march=armv7-a+simd']
link line: [ /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2 -plugin /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so -plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc0SZbWM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lSceRtc_stub -plugin-opt=-pass-through=-lSceSysmem_stub -plugin-opt=-pass-through=-lSceKernelThreadMgr_stub -plugin-opt=-pass-through=-lSceKernelModulemgr_stub -plugin-opt=-pass-through=-lSceIofilemgr_stub -plugin-opt=-pass-through=-lSceProcessmgr_stub -plugin-opt=-pass-through=-lSceLibKernel_stub -plugin-opt=-pass-through=-lSceNet_stub --sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi -X -o cmTC_17243 /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0 -L/usr/local/vitasdk/bin/../lib/gcc -L/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib -L/usr/local/vitasdk/bin/../arm-vita-eabi/lib -q -z nocopyreloc CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm --start-group -lgcc -lc -lSceRtc_stub -lSceSysmem_stub -lSceKernelThreadMgr_stub -lSceKernelModulemgr_stub -lSceIofilemgr_stub -lSceProcessmgr_stub -lSceLibKernel_stub -lSceNet_stub --end-group /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtend.o /usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtn.o]
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccBO5oR5.res] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cc0SZbWM.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lSceRtc_stub] ==> ignore
@@ -374,7 +374,7 @@ Parsed CXX implicit link information from above output:
arg [--sysroot=/usr/local/vitasdk/bin/../arm-vita-eabi] ==> ignore
arg [-X] ==> ignore
arg [-o] ==> ignore
arg [cmTC_7f552] ==> ignore
arg [cmTC_17243] ==> ignore
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crti.o] ==> ignore
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/crtbegin.o] ==> ignore
arg [/usr/local/vitasdk/bin/../lib/gcc/arm-vita-eabi/10.1.0/../../../../arm-vita-eabi/lib/crt0.o] ==> ignore
@@ -384,7 +384,7 @@ Parsed CXX implicit link information from above output:
arg [-L/usr/local/vitasdk/bin/../arm-vita-eabi/lib] ==> dir [/usr/local/vitasdk/bin/../arm-vita-eabi/lib]
arg [-q] ==> ignore
arg [-znocopyreloc] ==> ignore
arg [CMakeFiles/cmTC_7f552.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [CMakeFiles/cmTC_17243.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [--start-group] ==> ignore

View File

@@ -1,5 +1,5 @@
/home/semtex99/vita/samples/hello_world2/build/CMakeFiles/rebuild_cache.dir
/home/semtex99/vita/samples/hello_world2/build/CMakeFiles/edit_cache.dir
/home/semtex99/vita/samples/hello_world2/build/CMakeFiles/hello_world.vpk.dir
/home/semtex99/vita/samples/hello_world2/build/CMakeFiles/hello_world.self.dir
/home/semtex99/vita/samples/hello_world2/build/CMakeFiles/hello_world.dir
/home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/rebuild_cache.dir
/home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/edit_cache.dir
/home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/cybershot.vpk.dir
/home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/cybershot.self.dir
/home/semtex99/vita/samples/cybershot-PSVita/build/CMakeFiles/cybershot.dir

View File

@@ -11,7 +11,7 @@
# =============================================================================
# =============================================================================
# Project: hello_world
# Project: cybershot
# Configuration: Debug
# =============================================================================
@@ -34,7 +34,7 @@ include rules.ninja
# Utility command for rebuild_cache
build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
COMMAND = cd /home/semtex99/vita/samples/hello_world2/build && /usr/bin/cmake -S/home/semtex99/vita/samples/hello_world2 -B/home/semtex99/vita/samples/hello_world2/build
COMMAND = cd /home/semtex99/vita/samples/cybershot-PSVita/build && /usr/bin/cmake -S/home/semtex99/vita/samples/cybershot-PSVita -B/home/semtex99/vita/samples/cybershot-PSVita/build
DESC = Running CMake to regenerate build system...
pool = console
restat = 1
@@ -46,7 +46,7 @@ build rebuild_cache: phony CMakeFiles/rebuild_cache.util
# Utility command for edit_cache
build CMakeFiles/edit_cache.util: CUSTOM_COMMAND
COMMAND = cd /home/semtex99/vita/samples/hello_world2/build && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
COMMAND = cd /home/semtex99/vita/samples/cybershot-PSVita/build && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
DESC = No interactive CMake dialog available...
restat = 1
@@ -54,111 +54,111 @@ build edit_cache: phony CMakeFiles/edit_cache.util
#############################################
# Utility command for hello_world.vpk
# Utility command for cybershot.vpk
build hello_world.vpk: phony CMakeFiles/hello_world.vpk hello_world.vpk.out hello_world.vpk_param.sfo hello_world.self
build cybershot.vpk: phony CMakeFiles/cybershot.vpk cybershot.vpk.out cybershot.vpk_param.sfo cybershot.self
#############################################
# Utility command for hello_world.self
# Utility command for cybershot.self
build hello_world.self: phony CMakeFiles/hello_world.self hello_world.self.out hello_world.velf hello_world
build cybershot.self: phony CMakeFiles/cybershot.self cybershot.self.out cybershot.velf cybershot
# =============================================================================
# Object build statements for EXECUTABLE target hello_world
# Object build statements for EXECUTABLE target cybershot
#############################################
# Order-only phony target for hello_world
# Order-only phony target for cybershot
build cmake_object_order_depends_target_hello_world: phony || CMakeFiles/hello_world.dir
build cmake_object_order_depends_target_cybershot: phony || CMakeFiles/cybershot.dir
build CMakeFiles/hello_world.dir/src/main.c.obj: C_COMPILER__hello_world ../src/main.c || cmake_object_order_depends_target_hello_world
DEP_FILE = CMakeFiles/hello_world.dir/src/main.c.obj.d
build CMakeFiles/cybershot.dir/src/main.c.obj: C_COMPILER__cybershot ../src/main.c || cmake_object_order_depends_target_cybershot
DEP_FILE = CMakeFiles/cybershot.dir/src/main.c.obj.d
FLAGS = -Wl,-q -Wall -O0 -g -DDEBUG -D_DEBUG
INCLUDES = -I../../common
OBJECT_DIR = CMakeFiles/hello_world.dir
OBJECT_FILE_DIR = CMakeFiles/hello_world.dir/src
TARGET_COMPILE_PDB = CMakeFiles/hello_world.dir/
TARGET_PDB = hello_world.pdb
OBJECT_DIR = CMakeFiles/cybershot.dir
OBJECT_FILE_DIR = CMakeFiles/cybershot.dir/src
TARGET_COMPILE_PDB = CMakeFiles/cybershot.dir/
TARGET_PDB = cybershot.pdb
build CMakeFiles/hello_world.dir/home/semtex99/vita/samples/common/debugScreen.c.obj: C_COMPILER__hello_world /home/semtex99/vita/samples/common/debugScreen.c || cmake_object_order_depends_target_hello_world
DEP_FILE = CMakeFiles/hello_world.dir/home/semtex99/vita/samples/common/debugScreen.c.obj.d
build CMakeFiles/cybershot.dir/home/semtex99/vita/samples/common/debugScreen.c.obj: C_COMPILER__cybershot /home/semtex99/vita/samples/common/debugScreen.c || cmake_object_order_depends_target_cybershot
DEP_FILE = CMakeFiles/cybershot.dir/home/semtex99/vita/samples/common/debugScreen.c.obj.d
FLAGS = -Wl,-q -Wall -O0 -g -DDEBUG -D_DEBUG
INCLUDES = -I../../common
OBJECT_DIR = CMakeFiles/hello_world.dir
OBJECT_FILE_DIR = CMakeFiles/hello_world.dir/home/semtex99/vita/samples/common
TARGET_COMPILE_PDB = CMakeFiles/hello_world.dir/
TARGET_PDB = hello_world.pdb
OBJECT_DIR = CMakeFiles/cybershot.dir
OBJECT_FILE_DIR = CMakeFiles/cybershot.dir/home/semtex99/vita/samples/common
TARGET_COMPILE_PDB = CMakeFiles/cybershot.dir/
TARGET_PDB = cybershot.pdb
# =============================================================================
# Link build statements for EXECUTABLE target hello_world
# Link build statements for EXECUTABLE target cybershot
#############################################
# Link the executable hello_world
# Link the executable cybershot
build hello_world: C_EXECUTABLE_LINKER__hello_world CMakeFiles/hello_world.dir/src/main.c.obj CMakeFiles/hello_world.dir/home/semtex99/vita/samples/common/debugScreen.c.obj
build cybershot: C_EXECUTABLE_LINKER__cybershot CMakeFiles/cybershot.dir/src/main.c.obj CMakeFiles/cybershot.dir/home/semtex99/vita/samples/common/debugScreen.c.obj
FLAGS = -Wl,-q -Wall -O0 -g -DDEBUG -D_DEBUG
LINK_FLAGS = -Wl,-z,nocopyreloc
LINK_LIBRARIES = -lvita2d -lSceLibKernel_stub -lSceDisplay_stub -lSceGxm_stub -lSceSysmodule_stub -lSceCtrl_stub -lScePgf_stub -lScePvf_stub -lSceCommonDialog_stub -lfreetype -lpng -ljpeg -lz -lm -lc -lSceAppMgr_stub
LINK_PATH = -L/home/semtex99/vita/samples/hello_world2/build
OBJECT_DIR = CMakeFiles/hello_world.dir
LINK_PATH = -L/home/semtex99/vita/samples/cybershot-PSVita/build
OBJECT_DIR = CMakeFiles/cybershot.dir
POST_BUILD = :
PRE_LINK = :
TARGET_COMPILE_PDB = CMakeFiles/hello_world.dir/
TARGET_FILE = hello_world
TARGET_PDB = hello_world.pdb
TARGET_COMPILE_PDB = CMakeFiles/cybershot.dir/
TARGET_FILE = cybershot
TARGET_PDB = cybershot.pdb
#############################################
# Custom command for CMakeFiles/hello_world.vpk
# Custom command for CMakeFiles/cybershot.vpk
build CMakeFiles/hello_world.vpk: CUSTOM_COMMAND hello_world.vpk.out || hello_world hello_world.self
COMMAND = cd /home/semtex99/vita/samples/hello_world2/build && /usr/bin/cmake -E copy /home/semtex99/vita/samples/hello_world2/build/hello_world.vpk.out hello_world.vpk
build CMakeFiles/cybershot.vpk: CUSTOM_COMMAND cybershot.vpk.out || cybershot cybershot.self
COMMAND = cd /home/semtex99/vita/samples/cybershot-PSVita/build && /usr/bin/cmake -E copy /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot.vpk.out cybershot.vpk
#############################################
# Custom command for hello_world.vpk.out
# Custom command for cybershot.vpk.out
build hello_world.vpk.out: CUSTOM_COMMAND hello_world.vpk_param.sfo hello_world.self ../sce_sys/icon0.png ../sce_sys/livearea/contents/bg.png ../sce_sys/livearea/contents/startup.png ../sce_sys/livearea/contents/template.xml || hello_world hello_world.self
COMMAND = cd /home/semtex99/vita/samples/hello_world2/build && /usr/local/vitasdk/bin/vita-pack-vpk -a /home/semtex99/vita/samples/hello_world2/sce_sys/icon0.png=sce_sys/icon0.png -a /home/semtex99/vita/samples/hello_world2/sce_sys/livearea/contents/bg.png=sce_sys/livearea/contents/bg.png -a /home/semtex99/vita/samples/hello_world2/sce_sys/livearea/contents/startup.png=sce_sys/livearea/contents/startup.png -a /home/semtex99/vita/samples/hello_world2/sce_sys/livearea/contents/template.xml=sce_sys/livearea/contents/template.xml -s /home/semtex99/vita/samples/hello_world2/build/hello_world.vpk_param.sfo -b /home/semtex99/vita/samples/hello_world2/build/hello_world.self /home/semtex99/vita/samples/hello_world2/build/hello_world.vpk.out
DESC = Building vpk hello_world.vpk
build cybershot.vpk.out: CUSTOM_COMMAND cybershot.vpk_param.sfo cybershot.self ../sce_sys/icon0.png ../sce_sys/livearea/contents/bg.png ../sce_sys/livearea/contents/startup.png ../sce_sys/livearea/contents/template.xml || cybershot cybershot.self
COMMAND = cd /home/semtex99/vita/samples/cybershot-PSVita/build && /usr/local/vitasdk/bin/vita-pack-vpk -a /home/semtex99/vita/samples/cybershot-PSVita/sce_sys/icon0.png=sce_sys/icon0.png -a /home/semtex99/vita/samples/cybershot-PSVita/sce_sys/livearea/contents/bg.png=sce_sys/livearea/contents/bg.png -a /home/semtex99/vita/samples/cybershot-PSVita/sce_sys/livearea/contents/startup.png=sce_sys/livearea/contents/startup.png -a /home/semtex99/vita/samples/cybershot-PSVita/sce_sys/livearea/contents/template.xml=sce_sys/livearea/contents/template.xml -s /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot.vpk_param.sfo -b /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot.self /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot.vpk.out
DESC = Building vpk cybershot.vpk
restat = 1
#############################################
# Custom command for hello_world.vpk_param.sfo
# Custom command for cybershot.vpk_param.sfo
build hello_world.vpk_param.sfo: CUSTOM_COMMAND hello_world.self || hello_world hello_world.self
COMMAND = cd /home/semtex99/vita/samples/hello_world2/build && /usr/local/vitasdk/bin/vita-mksfoex -d PARENTAL_LEVEL=1 -s APP_VER=01.00 -s TITLE_ID=VSDK00007 Hello\ World /home/semtex99/vita/samples/hello_world2/build/hello_world.vpk_param.sfo
DESC = Generating param.sfo for hello_world.vpk
build cybershot.vpk_param.sfo: CUSTOM_COMMAND cybershot.self || cybershot cybershot.self
COMMAND = cd /home/semtex99/vita/samples/cybershot-PSVita/build && /usr/local/vitasdk/bin/vita-mksfoex -d PARENTAL_LEVEL=1 -s APP_VER=01.00 -s TITLE_ID=CBSH01599 Cybershot /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot.vpk_param.sfo
DESC = Generating param.sfo for cybershot.vpk
restat = 1
#############################################
# Custom command for CMakeFiles/hello_world.self
# Custom command for CMakeFiles/cybershot.self
build CMakeFiles/hello_world.self: CUSTOM_COMMAND hello_world.self.out || hello_world
COMMAND = cd /home/semtex99/vita/samples/hello_world2/build && /usr/bin/cmake -E copy /home/semtex99/vita/samples/hello_world2/build/hello_world.self.out hello_world.self
build CMakeFiles/cybershot.self: CUSTOM_COMMAND cybershot.self.out || cybershot
COMMAND = cd /home/semtex99/vita/samples/cybershot-PSVita/build && /usr/bin/cmake -E copy /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot.self.out cybershot.self
#############################################
# Custom command for hello_world.self.out
# Custom command for cybershot.self.out
build hello_world.self.out: CUSTOM_COMMAND hello_world.velf || hello_world
COMMAND = cd /home/semtex99/vita/samples/hello_world2/build && /usr/local/vitasdk/bin/vita-make-fself -c -s /home/semtex99/vita/samples/hello_world2/build/hello_world.velf /home/semtex99/vita/samples/hello_world2/build/hello_world.self.out
DESC = Creating SELF hello_world.self
build cybershot.self.out: CUSTOM_COMMAND cybershot.velf || cybershot
COMMAND = cd /home/semtex99/vita/samples/cybershot-PSVita/build && /usr/local/vitasdk/bin/vita-make-fself -c -s /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot.velf /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot.self.out
DESC = Creating SELF cybershot.self
restat = 1
#############################################
# Custom command for hello_world.velf
# Custom command for cybershot.velf
build hello_world.velf: CUSTOM_COMMAND hello_world || hello_world
COMMAND = cd /home/semtex99/vita/samples/hello_world2/build && /usr/local/vitasdk/bin/vita-elf-create /home/semtex99/vita/samples/hello_world2/build/hello_world /home/semtex99/vita/samples/hello_world2/build/hello_world.velf
DESC = Converting to Sony ELF hello_world.velf
build cybershot.velf: CUSTOM_COMMAND cybershot || cybershot
COMMAND = cd /home/semtex99/vita/samples/cybershot-PSVita/build && /usr/local/vitasdk/bin/vita-elf-create /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot /home/semtex99/vita/samples/cybershot-PSVita/build/cybershot.velf
DESC = Converting to Sony ELF cybershot.velf
restat = 1
# =============================================================================
@@ -170,9 +170,9 @@ build hello_world.velf: CUSTOM_COMMAND hello_world || hello_world
# =============================================================================
#############################################
# Folder: /home/semtex99/vita/samples/hello_world2/build
# Folder: /home/semtex99/vita/samples/cybershot-PSVita/build
build all: phony hello_world.vpk hello_world.self hello_world
build all: phony cybershot.vpk cybershot.self cybershot
# =============================================================================
# Unknown Build Time Dependencies.

View File

@@ -1,4 +1,4 @@
# Install script for directory: /home/semtex99/vita/samples/hello_world2
# Install script for directory: /home/semtex99/vita/samples/cybershot-PSVita
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@@ -40,5 +40,5 @@ endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/semtex99/vita/samples/hello_world2/build/${CMAKE_INSTALL_MANIFEST}"
file(WRITE "/home/semtex99/vita/samples/cybershot-PSVita/build/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@@ -1,13 +1,13 @@
[
{
"directory": "/home/semtex99/vita/samples/hello_world2/build",
"command": "/usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0 -I../../common -Wl,-q -Wall -O0 -g -DDEBUG -D_DEBUG -o CMakeFiles/hello_world.dir/src/main.c.obj -c /home/semtex99/vita/samples/hello_world2/src/main.c",
"file": "/home/semtex99/vita/samples/hello_world2/src/main.c"
"directory": "/home/semtex99/vita/samples/cybershot-PSVita/build",
"command": "/usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0 -I../../common -Wl,-q -Wall -O0 -g -DDEBUG -D_DEBUG -o CMakeFiles/cybershot.dir/src/main.c.obj -c /home/semtex99/vita/samples/cybershot-PSVita/src/main.c",
"file": "/home/semtex99/vita/samples/cybershot-PSVita/src/main.c"
},
{
"directory": "/home/semtex99/vita/samples/hello_world2/build",
"command": "/usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0 -I../../common -Wl,-q -Wall -O0 -g -DDEBUG -D_DEBUG -o CMakeFiles/hello_world.dir/home/semtex99/vita/samples/common/debugScreen.c.obj -c /home/semtex99/vita/samples/common/debugScreen.c",
"directory": "/home/semtex99/vita/samples/cybershot-PSVita/build",
"command": "/usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0 -I../../common -Wl,-q -Wall -O0 -g -DDEBUG -D_DEBUG -o CMakeFiles/cybershot.dir/home/semtex99/vita/samples/common/debugScreen.c.obj -c /home/semtex99/vita/samples/common/debugScreen.c",
"file": "/home/semtex99/vita/samples/common/debugScreen.c"
}
]

View File

@@ -6,7 +6,7 @@
# It is included in the main 'build.ninja'.
# =============================================================================
# Project: hello_world
# Project: cybershot
# Configuration: Debug
# =============================================================================
# =============================================================================
@@ -22,7 +22,7 @@ rule CUSTOM_COMMAND
#############################################
# Rule for compiling C files.
rule C_COMPILER__hello_world
rule C_COMPILER__cybershot
depfile = $DEP_FILE
deps = gcc
command = /usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0 $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
@@ -32,7 +32,7 @@ rule C_COMPILER__hello_world
#############################################
# Rule for linking C executable.
rule C_EXECUTABLE_LINKER__hello_world
rule C_EXECUTABLE_LINKER__cybershot
command = $PRE_LINK && /usr/local/vitasdk/bin/arm-vita-eabi-gcc-10.1.0 $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD
description = Linking C executable $TARGET_FILE
restat = $RESTAT
@@ -42,7 +42,7 @@ rule C_EXECUTABLE_LINKER__hello_world
# Rule for re-running cmake.
rule RERUN_CMAKE
command = /usr/bin/cmake -S/home/semtex99/vita/samples/hello_world2 -B/home/semtex99/vita/samples/hello_world2/build
command = /usr/bin/cmake -S/home/semtex99/vita/samples/cybershot-PSVita -B/home/semtex99/vita/samples/cybershot-PSVita/build
description = Re-running CMake...
generator = 1

View File

@@ -1,4 +1,4 @@
# Install script for directory: /home/semtex99/vita/samples/hello_world
# Install script for directory: /home/semtex99/vita/samples/cybershot-PSVita
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@@ -40,5 +40,5 @@ endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/semtex99/vita/samples/hello_world/${CMAKE_INSTALL_MANIFEST}"
file(WRITE "/home/semtex99/vita/samples/cybershot-PSVita/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")