Skip to content

Commit

Permalink
gaffer.cmd : Remove /debugexe debugger switch
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmehl committed Oct 10, 2023
1 parent 2ed64cd commit 8c70b53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Breaking Changes
- Process : Removed non-const variant of the `handleException()` method.
- StringPlug : Removed deprecated `precomputedHash` argument from `getValue()` method.
- OpenColorIOContext : Removed `configEnabledPlug()`, `configValuePlug()`, `workingSpaceEnabledPlug()` and `workingSpaceValuePlug()` methods. Use the OptionalValuePlug child accessors instead.
- Windows launch script : Removed the hardcoded `/debugexe` switch used when `GAFFER_DEBUG` is enabled, making it possible to use debuggers other than Visual Studio. Debug switches can be added to the `GAFFER_DEBUGGER` environment variable instead.

1.3.x.x (relative to 1.3.4.0)
=======
Expand Down
2 changes: 1 addition & 1 deletion bin/gaffer.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ for /f "tokens=1* delims=;" %%A in ("%EXTENSION_PATH%") do (
)

if "%GAFFER_DEBUG%" NEQ "" (
%GAFFER_DEBUGGER% /debugexe "%GAFFER_ROOT%\bin\python.exe" "%GAFFER_ROOT%"/bin/__gaffer.py %*
%GAFFER_DEBUGGER% "%GAFFER_ROOT%\bin\python.exe" "%GAFFER_ROOT%"/bin/__gaffer.py %*
) else (
"%GAFFER_ROOT%"\bin\python.exe "%GAFFER_ROOT%"/bin/__gaffer.py %*
)
Expand Down

0 comments on commit 8c70b53

Please sign in to comment.