-
-
Notifications
You must be signed in to change notification settings - Fork 39
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
Build sentry from source #706
Open
PlasmaDev5
wants to merge
24
commits into
main
Choose a base branch
from
feat/build-native
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+7,247
−82
Open
Changes from 19 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
e8cc79c
Unreal Build CMake
9ee4824
Link includes
f91ee10
Include platform paths
332f6ce
move native submodule
fcf3b7e
link library on windows
2ba8c1f
link Linux libraries
6422452
small build fixes
84a5cb6
load Xbox toolchain
3ed10ca
removed unused symlink
a94acbe
Fix submodules
81d74c5
Add changelog
c5bea5e
Fix xbox, add xbox one support and build backtrace option
PlasmaDev5 3b67fc9
Update package snapshot
tustanivsky a547a3a
Merge branch 'main' into feat/build-native
tustanivsky 6efda5c
Update ci.yml
tustanivsky ad94624
build fix
PlasmaDev5 27760ef
Merge remote-tracking branch 'origin/feat/build-native' into feat/bui…
PlasmaDev5 14988c1
install cmake on build
PlasmaDev5 3ba3921
install cmake for tests
PlasmaDev5 6d6a100
Update CHANGELOG.md
PlasmaDev5 09aae1c
Review and CI fix
PlasmaDev5 c4fabe2
Merge remote-tracking branch 'origin/feat/build-native' into feat/bui…
15f266d
more fixes and improvements to cmake build
PlasmaDev5 823acdc
correct path to cmake
PlasmaDev5 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
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[submodule "modules/sentry-java"] | ||
path = modules/sentry-java | ||
url = https://github.com/getsentry/sentry-java.git | ||
[submodule "modules/sentry-native"] | ||
path = modules/sentry-native | ||
url = https://github.com/getsentry/sentry-native.git | ||
|
||
[submodule "plugin-dev/sentry-native"] | ||
path = plugin-dev/sentry-native | ||
url = https://github.com/getsentry/sentry-native.git |
This file contains 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
Submodule sentry-native
deleted from
407253
Oops, something went wrong.
Oops, something went wrong.
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.
Did it need to move to
plugin-dev
? It was located onmodules
before and it's unclear why it had to change.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.
The SDK plugin now needs to know the path to native in order to build. I did originally try do this via symlink but with the SDK itself being used as a symlink it caused errors and pointed to the wrong direction. The safest and least error prone option for users was to simple move native into the SDK folder so that wherever you build SDK it can easily locate native without manual user steps