Setup debug definition
This commit is contained in:
parent
fe02532c9f
commit
de285d7dbe
@ -1,5 +1,6 @@
|
|||||||
cmake_minimum_required(VERSION 3.10)
|
cmake_minimum_required(VERSION 3.10)
|
||||||
set(MAKE_TOOLCHAIN_FILE $PS2SDK/ps2dev.cmake)
|
set(MAKE_TOOLCHAIN_FILE $PS2SDK/ps2dev.cmake)
|
||||||
|
set(CMAKE_C_FLAGS_DEBUG -DDEBUG)
|
||||||
project(helloworld)
|
project(helloworld)
|
||||||
add_executable(helloworld.elf main.c)
|
add_executable(helloworld.elf main.c)
|
||||||
target_link_libraries(helloworld.elf -ldebug)
|
target_link_libraries(helloworld.elf debug -ldebug)
|
10
main.c
10
main.c
@ -4,12 +4,20 @@
|
|||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
void debug_msg(const char* msg) {
|
||||||
|
#ifdef DEBUG
|
||||||
|
scr_printf(msg);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
#ifdef DEBUG
|
||||||
sceSifInitRpc(0);
|
sceSifInitRpc(0);
|
||||||
init_scr();
|
init_scr();
|
||||||
scr_printf("Hello PS2!");
|
#endif
|
||||||
|
debug_msg("Hello PS2!!!\n");
|
||||||
sleep(5);
|
sleep(5);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user