Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
431a7b8
chore: Apply code formatting
Jan 28, 2024
4c9ed32
feat(util): Add log function for logging in exception handlers
Jan 28, 2024
a70f7c6
feat(util): Separate debug module with proper stacktrace printing
Jan 28, 2024
e1bccc4
feat(inject): Use new exception handler with stacktraces
Jan 28, 2024
fbbe956
fix(make): Include dwarf symbols and remove stripping
Jan 28, 2024
0eda352
feat(util): Add func to check if running as admin user
Jan 28, 2024
c20fbbd
feat: Add new module to scope avs related "utility" stuff
Jan 28, 2024
201d3d2
feat(avs-api): Improve property_type enum
Jan 28, 2024
4ac0ac5
chore(avs-api): Move psmap terminator to enum
Jan 28, 2024
ed21aa2
feat(avs-api): Introduce AVS error type
Jan 28, 2024
ffaeb79
feat(avs-api): Add more AVS file system related functions
Jan 28, 2024
9f5bb81
feat(avs-api): Add more property node related functions
Jan 28, 2024
bc743df
fix(avs-api): Variable type and naming
Jan 28, 2024
e2b4113
feat(avs imports): Add lib export definitions of new AVS API functions
Jan 28, 2024
fe05817
feat/fix(avs/ddr): Support AVS 2.13.06
Jan 28, 2024
1d6dfbb
fix(dist): Incorrect versioning for ddr distribution packages
Jan 29, 2024
5330802
fix(doc): Update list of supported ddr versions
Jan 29, 2024
24e7dd5
refactor(launcher): Major re-work of launcher
Jan 29, 2024
a237454
refactor(dist): Config and .bat files
Jan 29, 2024
d95633c
fix(hook): Add missing hook_table_revert impl
Feb 3, 2024
d42b426
feat(procmon): Library to hook and monitor selected system calls
Feb 3, 2024
017caab
feat(launcher): Integrate procmon as optional dependency
Feb 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ toolchain_64 := x86_64-w64-mingw32-

gitrev := $(shell git rev-parse HEAD)
cppflags := -I src -I src/main -I src/test -DGITREV=$(gitrev)
cflags := -O2 -pipe -ffunction-sections -fdata-sections \
cflags := -g -O2 -pipe -ffunction-sections -fdata-sections \
-Wall -std=c99 -DPSAPI_VERSION=1
cflags_release := -Werror
ldflags := -Wl,--gc-sections -static-libgcc
Expand Down Expand Up @@ -240,7 +240,6 @@ $$(dll_$1_$2_$3) $$(implib_$1_$2_$3): $$(obj_$1_$2_$3) $$(abslib_$1_$2_$3) \
$(V)$$(toolchain_$1)gcc -shared \
-o $$(dll_$1_$2_$3) -Wl,--out-implib,$$(implib_$1_$2_$3) \
-Wl,--start-group $$^ -Wl,--end-group $$(ldflags_$3)
$(V)$$(toolchain_$1)strip $$(dll_$1_$2_$3)
$(V)$$(toolchain_$1)ranlib $$(implib_$1_$2_$3)

endef
Expand All @@ -257,7 +256,6 @@ $$(exe_$1_$2_$3): $$(obj_$1_$2_$3) $$(abslib_$1_$2_$3) $$(absdpl_$1_$2_$3) \
| $$(bindir_$1_$2)
$(V)echo ... $$@
$(V)$$(toolchain_$1)gcc -o $$@ $$^ $$(ldflags_$3)
$(V)$$(toolchain_$1)strip $$@

endef

Expand Down
Loading