-
Notifications
You must be signed in to change notification settings - Fork 4
Some tweaks to the build file #3
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
Open
sreilly
wants to merge
5
commits into
violetlib:master
Choose a base branch
from
TheInfiniteKind:feature/build-tweaks
base: master
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.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
64847c2
allow building with all java 9 and higher; don't require 9 specifically
sreilly 376ceb2
fix path to to JavaRuntimeSupport, and reorder frameworks in build path
sreilly e44da2b
extend comment for JavaNativeFoundation framework in build file
sreilly 62fce57
return to using nested framework for JavaRuntimeSupport
sreilly 1977d0a
Merge branch 'master' of github.com:violetlib/jnr into feature/build-…
sreilly 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,6 @@ | |
| <!-- A Java 9 or later compiler is required --> | ||
|
|
||
| <exec executable="java_home" outputproperty="jdk"> | ||
| <arg value="-F"/> | ||
| <arg value="-v"/> | ||
| <arg value="9+"/> | ||
| </exec> | ||
|
|
@@ -45,10 +44,14 @@ | |
| <property name="cc" value="/usr/bin/cc"/> | ||
| <property name="lipo" location="/usr/bin/lipo"/> | ||
|
|
||
| <!-- Note: open source JavaNativeFoundation is required to build for arm, see https://github.com/apple/openjdk --> | ||
|
|
||
| <property name="JNFdir" location="${SDKroot}/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks"/> | ||
|
|
||
| <!-- | ||
| JNFdir specifies the location of Apple's JavaNativeFoundation.framework which can be acquired | ||
| at https://github.com/apple/openjdk/tree/xcodejdk14-release/apple/JavaNativeFoundation | ||
| Build it using Xcode and place the resulting JavaNativeFoundation.framework in the lib folder, | ||
| or override the JNFdir property to point to a folder that contains your own build of the framework. | ||
| --> | ||
| <property name="JNFdir" location="${base}/lib/"/> | ||
|
|
||
|
Comment on lines
+47
to
+54
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The JavaNativeFoundation framework is not (or is no longer) present under the SDK folder, so explain how to get it and where to put it. |
||
| <property name="debug" value="false"/> | ||
| <property name="debugoption" value=""/> | ||
|
|
||
|
|
@@ -195,13 +198,14 @@ | |
| <arg value="Cocoa"/> | ||
| <arg line="${additional.jni.frameworks}"/> | ||
|
|
||
| <arg value="-F/${SDKroot}/System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks"/> | ||
| <arg value="-F${SDKroot}/System/Library/Frameworks/JavaVM.framework/Versions/Current/Frameworks"/> | ||
| <arg value="-framework"/> | ||
| <arg value="JavaRuntimeSupport"/> | ||
|
|
||
| <arg value="-F${JNFdir}"/> | ||
| <arg value="-framework"/> | ||
| <arg value="JavaNativeFoundation"/> | ||
|
|
||
| <arg value="-install_name"/> | ||
| <arg value="${jniname}.dylib"/> | ||
|
|
||
|
|
||
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.
Including the -F never builds for me, because java_home -F doesn't obey the plus in 9+ and fails with any jdk other than version 9.*.