-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Fix MSVC VST compilation #4421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Fix MSVC VST compilation #4421
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
884601f
Use CMake GenerateExportHeader
lukas-w 74d4b2f
CMake: Fix MSVC architecture detection
lukas-w 81a0ec3
MSVC: Port RemoteVstPlugin
lukas-w c41d59b
RemoteVstPlugin: Debug LoadLibrary failure
lukas-w 2b1b3d3
MSVC: Fix VST build
lukas-w b416036
VST: Fix main entry calling convention
lukas-w 9c35487
Linux compile fixes
lukas-w c3d0dc5
Fix Linux VST compilation
lukas-w e95a587
MSVC: Fix VST arch detection
lukas-w e644202
MSVC: Fix RemoteVstPlugin module path
lukas-w 8fce500
VST build fixes
lukas-w f702738
CMake quoting fixes
lukas-w 5b9579d
MinGW fixes
lukas-w 9a9580a
Fix export errors with MinGW
lukas-w a0bd296
Mingw64 compilation fixes
lukas-w 39d83ee
More export fixes
lukas-w be0c02f
Fix 64bit VSTs on Linux by fixing callback calling convention
lukas-w 5744c2a
CMake: Fix Clang detection
lukas-w 3beac2c
MSVC fixes (#4352)
9db8cbf
Enable 64bit VSTs on Linux
lukas-w cd35ec2
MSVC VST compilation fixes
lukas-w 225e902
AudioSdl: Add support for full SDL2 with float samples and recording
Reflexe aa2c867
AudioSDL -> SDL2: Fix a crash from calling a SDL1 function instead of
Reflexe 3d98b0a
Fix cherry-pick
lukas-w ad4c4f0
AudioSdl: Use NULL for device names in order to get the default device.
lukas-w 00fda3f
Fix AppImage VST
lukas-w 4d5eb7f
CircleCI: Display Appimage log when failing
lukas-w 0349b97
Fix AppImage 64bit RemoteVstPlugin libwine discovery
lukas-w af57300
VstPlugin: Fix define naming conflict with MinGW
lukas-w 57fdaed
winegcc_wrapper: Remove misleading usage hint
lukas-w 40a1e36
RemotePlugin: Revert unnecessary invalidate() changes
lukas-w 642703e
Whitespace fix
lukas-w 66c2047
CircleCI: Make sure build fails when AppImage building does
lukas-w 65ccaff
RemoteVstPlugin: Fix confusing variable names
lukas-w d04965a
Merge branch 'master' into msvc/vst
lukas-w File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
CircleCI: Display Appimage log when failing
- Loading branch information
commit 4d5eb7f689dcb7a09b040ea52b7efedd80de791f
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't this mark the build as successful if AppImage creation is failed? I think it's fine if desired though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps
make appimage || cat appimage.log && falseThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there should be a pair of parenthesis:
make appimage || (cat appimage.log && false)See also: https://unix.stackexchange.com/questions/88850/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@PhysSong tested, confirmed...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think if appimage creation fails, it will fail one line later in
cp ./lmms-*.AppImage /tmp/artifacts/. I'll still add the&& falseto make sure.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True, I just missed that.