diff --git a/.vscode/launch.json b/.vscode/launch.json index aa12952..5d4c30e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,7 +3,7 @@ // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", - "configurations": [ + "configurations": [ { "name": "Start", "request": "launch", @@ -56,6 +56,20 @@ ], "type": "node" }, + { + "name": "Start: dylib", + "request": "launch", + "runtimeArgs": [ + "run-script", + "start:dylib", + "--preserve-symlinks" + ], + "runtimeExecutable": "npm", + "skipFiles": [ + "/**" + ], + "type": "node" + }, { "name": "Start: elf", "request": "launch", diff --git a/package.json b/package.json index 14cab02..76fb4fb 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "start:pdb": "ts-node -r dotenv/config ./bin/index.ts -d ./spec -f \"**/*.+(exe|dll|pdb)\"", "start:dsym": "ts-node -r dotenv/config ./bin/index.ts -d ./spec/support -f \"*.dSYM\" -a BugSplatTester -v \"1.0 (1)\"", "start:xcarchive": "ts-node -r dotenv/config ./bin/index.ts -d ./spec/support -f \"*.xcarchive/**/*.dSYM\" -v \"4.5.6 (1)\"", + "start:dylib": "ts-node -r dotenv/config ./bin/index.ts -d ./spec/support -f \"**/*.dylib.dSYM\"", "start:elf": "ts-node -r dotenv/config ./bin/index.ts -d ./spec -f \"**/*.elf\"", "start:dump_syms": "ts-node -r dotenv/config ./bin/index.ts -d ./spec -f \"**/*.dSYM\" -m", "start:symsrv": "ts-node -r dotenv/config ./bin/index.ts -d ./spec -f \"**/*.dll\"", @@ -90,7 +91,7 @@ "filenamify": "^4.3.0", "firstline": "^2.0.2", "glob": "^10.3.10", - "macho-uuid": "^1.3.1", + "macho-uuid": "^1.3.2", "pdb-guid": "^1.0.7", "pretty-bytes": "^5.6.0", "promise-retry": "^2.0.1", diff --git a/spec/support/libggcurl.dylib.dSYM/Contents/Resources/DWARF/libggcurl.dylib b/spec/support/libggcurl.dylib.dSYM/Contents/Resources/DWARF/libggcurl.dylib new file mode 100644 index 0000000..f92b405 Binary files /dev/null and b/spec/support/libggcurl.dylib.dSYM/Contents/Resources/DWARF/libggcurl.dylib differ