Descent3/ddebug
Chris Sarbora 3da53e567f
Programmatically replace all __LINUX__ with POSIX
Steps:
```sh
srcs=$(mktemp)
find . -name "*.cpp" -or -name "*.c" -or -name "*.h" -or -name "*.hpp" -or -name "*.cc" -or -name "*.hh" > $srcs
xargs sed -i 's/ifndef __LINUX__/if !defined(POSIX)/' < $srcs
xargs sed -i 's/ifdef __LINUX__/if defined(POSIX)/' < $srcs
xargs sed -i 's/defined(__LINUX__)/defined(POSIX)/' < $srcs
```
2024-07-12 18:11:54 -05:00
..
CMakeLists.txt Isolate misc module 2024-06-27 01:26:35 +03:00
debug.cpp Make Debug_Log* functions to crossplatform 2024-06-03 01:40:35 +03:00
debug.h Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
debugbreak.h Move debug functions to own module 2024-04-30 00:58:34 +03:00
lnxdebug.cpp Cleanup mono debugging code 2024-06-03 01:40:33 +03:00
lnxmono.cpp Make Debug_Log* functions to crossplatform 2024-06-03 01:40:35 +03:00
mono.h Make Debug_Log* functions to crossplatform 2024-06-03 01:40:35 +03:00
windebug.cpp Isolate misc module 2024-06-27 01:26:35 +03:00
winmono.cpp Make Debug_Log* functions to crossplatform 2024-06-03 01:40:35 +03:00