-
software-materialism
I managed to compile in
msys2 MinGW 64-bit
on win10 after adding this toCMakeList.txt
if(WIN32) message("windows support limited") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DTEST -fPIC" ) set(PD_CMAKE_PATH "C:/Program Files/Pd") set(EXECUTABLE_NAME mi4pd) endif()
also, to force
cmake
to useUnix Makefile
generator instead of default MSVC
I added file next toCMakeList.txt
calledPreLoad.cmake
with following:set(CMAKE_GENERATOR "Unix Makefiles" CACHE INTERNAL "" FORCE)
So,
mkdir build && cd build && cmake .. && make
produces
DLLs
in./release/bin/
with some minor warnings, but all audio object causes segmentation fault and crashesPd
straight after enabling DSP. Onlygrids
is usable. -
software-materialism
I made an issue. Does it make big difference in terms of development to base purr-data on upstream vanilla?
-
-
software-materialism
Thanks, it works both binary you provide and recompiled with jack support.
It looks awesome!
What version of Pd is that? I'm asking because it seems that[array]
object is absent and[netreceive]
has old syntax.
I have no experience with aur packages, but I hope to find some spare time to get into it and make PKGBUILD in the future.
-
software-materialism
cool, I will give it a try as soon as you make this release available. So I stay tuned.
-
software-materialism
cool, this means true cross-platform
I wonder whether linux is third different story. @whale-av What resources do you recommend to get started with Tcl/Tk with focus on Pd? Actually I am not disgusted with aesthetics of Pd interface, I'm more interested in using Pd as a platform.
-
software-materialism
Great and refreshing idea! Is it possible to use nw.js GUI as drop-in replacement for pd-gui? Do I need the whole l2ork distribution? I work on Arch Linux and use vanilla Pd.
-
software-materialism
Nice, I beg you for some hints how to adapt it to vanilla 0.46.7.
-
software-materialism
of course! how could I miss it? this katja's page is a nice addition to M.Puckette helps. thanks guys!
-
software-materialism
Hi,
Does someone know how to implement pitch shift using [delwrite~] and [vd~]?
How to use Doppler effect to achieve this?