Browse Source

Fix windows fatal signal handler

tags/v1.0.0
Andrew Belt 5 years ago
parent
commit
83355ad39e
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      Makefile
  2. +2
    -0
      src/main.cpp

+ 1
- 1
Makefile View File

@@ -30,7 +30,7 @@ ifdef ARCH_WIN
LDFLAGS += -static \
-Wl,--export-all-symbols,--out-implib,libRack.a -mwindows \
-Ldep/lib -lglew32 -lglfw3 -ljansson -lspeexdsp -lzip -lz -lcurl -lssl -lcrypto -lrtaudio -lrtmidi \
-lpthread -lopengl32 -lgdi32 -lws2_32 -lcomdlg32 -lole32 -ldsound -lwinmm -lksuser -lshlwapi -lmfplat -lmfuuid -lwmcodecdspuuid
-lpthread -lopengl32 -lgdi32 -lws2_32 -lcomdlg32 -lole32 -ldsound -lwinmm -lksuser -lshlwapi -lmfplat -lmfuuid -lwmcodecdspuuid -ldbghelp
TARGET := Rack.exe
OBJECTS += Rack.res
endif


+ 2
- 0
src/main.cpp View File

@@ -24,6 +24,8 @@

#if defined ARCH_WIN
#include <Windows.h>
#include <processthreadsapi.h>
#include <dbghelp.h>
#endif

using namespace rack;


Loading…
Cancel
Save