Add Github workflow for Linux (Ubuntu)#31
Open
enkvadrat wants to merge 2 commits intoComposersDesktop:mainfrom
Open
Add Github workflow for Linux (Ubuntu)#31enkvadrat wants to merge 2 commits intoComposersDesktop:mainfrom
enkvadrat wants to merge 2 commits intoComposersDesktop:mainfrom
Conversation
this tests that we can build successfully on Linux and also shows example of how people can build it. initialize buffers since clang gives compile error (may be a false positive)
Contributor
Author
|
Also I had not realized that we do not try to build the programs that requires portaudio (seems to be commented out?) so we would need portaudio. Also what do the few programs that require portaudio even do? |
Contributor
|
This is "work in progress", responding to problems some users here
reported in compiling and linking portaudio. I am even looking at moving
all the audio programs to my separate "PVXTOOLS" repository, using the
latest portaudio sources from github, which have changed a few api
details from the current "stable" release. There many challenges dealing
with all three platforms, not least including getting an up to date
version of MinGW than can build the latest portaudio code. I think i
have fou8nd a solution to that, and have new versions of paplay etc
working (so far). So I hope to restore a full build soon. For better or
worse, I am using github to facilitate code transfers acrosss platforms,
until such time as I am confident using more 'advanced' git procedures.
Portaudio is used for 'paplay' (plain m/c playback), 'pvplay' (ditto,
but also playback of pvoc analysis files) and 'recsf' (plain m/c
recording), plus a utility program 'listaudevs' that just reports what
audio devices are available. R.
…On 11/01/2026 03:53, enkvadrat wrote:
*enkvadrat* left a comment (ComposersDesktop/CDP8#31) <https://
github.com/ComposersDesktop/CDP8/pull/31#issuecomment-3733966152>
Also I had not realized that we do not try to build the programs that
requires portaudio (seems to be commented out?) so we would need
portaudio. Also what do the few programs that require portaudio even do?
—
Reply to this email directly, view it on GitHub <https://github.com/
ComposersDesktop/CDP8#31#issuecomment-3733966152>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/
ABNHS4SLPGEXTK6E6LAZ4334GHCKRAVCNFSM6AAAAACRDEYZF6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTOMZTHE3DMMJVGI>.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This tests that we can build successfully on Linux and also shows example of how people can build it.
initialize buffers since clang gives compile error (may be a false positive)
In the future we should probably add Windows and MacOs