Backup
This commit is contained in:
parent
150309833a
commit
11bde80286
7
Makefile
7
Makefile
|
|
@ -6,11 +6,14 @@ VERSION=$(shell awk '/version:/{ print $$2 }' README.md )
|
||||||
TESTNAME=primitives
|
TESTNAME=primitives
|
||||||
COMPILE_R7RS=chibi
|
COMPILE_R7RS=chibi
|
||||||
|
|
||||||
build: documentation
|
all: package
|
||||||
|
|
||||||
|
package:
|
||||||
|
markdown README.md > README.html
|
||||||
snow-chibi package \
|
snow-chibi package \
|
||||||
--version=${VERSION} \
|
--version=${VERSION} \
|
||||||
--authors="Retropikzel" \
|
--authors="Retropikzel" \
|
||||||
--doc=documentation/foreign-c.html \
|
--doc=README.html \
|
||||||
--foreign-depends=ffi \
|
--foreign-depends=ffi \
|
||||||
--description="Portable foreign function interface for R7RS Schemes" \
|
--description="Portable foreign function interface for R7RS Schemes" \
|
||||||
foreign/c.sld
|
foreign/c.sld
|
||||||
|
|
|
||||||
|
|
@ -100,6 +100,8 @@ Required versions:
|
||||||
- -J--add-exports=java.base/jdk.internal.foreign=ALL-UNNAMED
|
- -J--add-exports=java.base/jdk.internal.foreign=ALL-UNNAMED
|
||||||
- -J--enable-native-access=ALL-UNNAMED
|
- -J--enable-native-access=ALL-UNNAMED
|
||||||
- -J--enable-preview
|
- -J--enable-preview
|
||||||
|
- All needed arguments on one line for copy pasting
|
||||||
|
- -J--add-exports=java.base/jdk.internal.foreign.abi=ALL-UNNAMED -J--add-exports=java.base/jdk.internal.foreign.layout=ALL-UNNAMED -J--add-exports=java.base/jdk.internal.foreign=ALL-UNNAMED -J--enable-native-access=ALL-UNNAMED -J--enable-preview
|
||||||
- So that snow-chibi installed library is found
|
- So that snow-chibi installed library is found
|
||||||
- -Dkawa.import.path=/usr/local/share/kawa
|
- -Dkawa.import.path=/usr/local/share/kawa
|
||||||
- -Dkawa.import.path=/usr/local/share/kawa/lib
|
- -Dkawa.import.path=/usr/local/share/kawa/lib
|
||||||
|
|
|
||||||
|
|
@ -126,6 +126,13 @@ Schemes - 0.10.0</title>
|
||||||
<li>-J–enable-native-access=ALL-UNNAMED</li>
|
<li>-J–enable-native-access=ALL-UNNAMED</li>
|
||||||
<li>-J–enable-preview</li>
|
<li>-J–enable-preview</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
|
<li>All needed arguments on one line for copy pasting
|
||||||
|
<ul>
|
||||||
|
<li>-J–add-exports=java.base/jdk.internal.foreign.abi=ALL-UNNAMED
|
||||||
|
-J–add-exports=java.base/jdk.internal.foreign.layout=ALL-UNNAMED
|
||||||
|
-J–add-exports=java.base/jdk.internal.foreign=ALL-UNNAMED
|
||||||
|
-J–enable-native-access=ALL-UNNAMED -J–enable-preview</li>
|
||||||
|
</ul></li>
|
||||||
<li>So that snow-chibi installed library is found
|
<li>So that snow-chibi installed library is found
|
||||||
<ul>
|
<ul>
|
||||||
<li>-Dkawa.import.path=/usr/local/share/kawa</li>
|
<li>-Dkawa.import.path=/usr/local/share/kawa</li>
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Reference in New Issue