Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Suraj Modi
purr-data
Commits
f026466a
Commit
f026466a
authored
Apr 15, 2018
by
Jonathan Wilkes
Browse files
fix up paths and gcc dll name for Windows 64, use __int64 in m_pd.h
parent
b8b83837
Changes
2
Hide whitespace changes
Inline
Side-by-side
packages/win32_inno/Makefile
View file @
f026466a
...
...
@@ -80,8 +80,15 @@ endif
#
#==============================================================================#
#bin_src = /usr/local/bin
bin_src
=
/mingw32/bin
TARGET_PLATFORM
:=
$(
shell
uname
-p
)
ifeq
($(TARGET_PLATFORM),i386)
bin_src
=
/mingw32/bin
lib_gcc
=
libgcc_s_dw2-1.dll
else
bin_src
=
/mingw64/bin
lib_gcc
=
libgcc_s_seh-1.dll
endif
system32
=
/c/WINDOWS/system32
lib_install
:
# ultimately, the DLLs should be installed in %SystemRoot%\system32 by
...
...
@@ -143,7 +150,7 @@ endif
-install
-p
$(system32)/msvcr71.dll
$(DESTDIR)$(bindir)
#-install -p $(system32)/pthreadVC.dll $(DESTDIR)$(bindir)
install
-p
$(bin_src)/libwinpthread-1.dll
$(DESTDIR)$(bindir)
install
-p
$(bin_src)/libgcc
_s_dw2-1.dll
$(DESTDIR)$(bindir)
install
-p
$(bin_src)/
$(
lib
_
gcc
)
$(DESTDIR)$(bindir)
install
-p
$(bin_src)/libstdc++-6.dll
$(DESTDIR)$(bindir)
ifneq
($(LIGHT),yes)
# lyonpotpourri compiles its own shared lib. On Windows it needs to be
...
...
pd/src/m_pd.h
View file @
f026466a
...
...
@@ -88,7 +88,7 @@ typedef unsigned __int64 uint64_t;
/* signed and unsigned integer types the size of a pointer: */
#if !defined(PD_LONGINTTYPE)
#if defined(_WIN32) && defined(__x86_64__)
#define PD_LONGINTTYPE
long long
#define PD_LONGINTTYPE
__int64
#else
#define PD_LONGINTTYPE long
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment