aboutsummaryrefslogtreecommitdiff
path: root/lux-c++/commands.md
blob: af26bf44ebbc09ceffde54cfdbc81c6082daa491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Develop
```
cd ~/lux/lux-c++/ \
&& lux clean \
&& lux with python auto build
```

# Build

```
cd ~/lux/lux-c++/ \
&& lux clean \
&& lux with c++ auto build

## Build JVM-based compiler
cd ~/lux/lux-c++/ \
&& lux clean \
&& lux with jvm build \
&& mv target/program.jar jvm_based_compiler.jar

## Use JVM-based compiler to produce a c++/Node-based compiler.
cd ~/lux/lux-c++/ \
&& lux clean \
&& time java -jar jvm_based_compiler.jar build --source ~/lux/lux-c++/source --target ~/lux/lux-c++/target --module program --program _ \
&& mv target/program.c++ node_based_compiler.c++

## Use C++/Node-based compiler to produce another c++/Node-based compiler.
cd ~/lux/lux-c++/ \
&& lux clean \
&& node --stack_size=8192 node_based_compiler.c++ build --source ~/lux/lux-c++/source --target ~/lux/lux-c++/target --module program --program _
```

# Try

```
cd ~/lux/lux-c++/ \
&& conda activate WORK \
&& python3 target/program.py

cd ~/lux/lux-c++/ \
&& conda activate WORK \
&& python3 target/program.py build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux --program _

## Compile Lux's Standard Library's tests using a c++/Node-based compiler.
cd ~/lux/stdlib/ \
&& lux clean \
&& node --stack_size=8192 ~/lux/lux-c++/target/program.c++ build --source ~/lux/stdlib/source --target ~/lux/stdlib/target --module test/lux --program _ \
&& node ~/lux/stdlib/target/program.c++
```

# Deploy

```
cd ~/lux/lux-c++/ \
&& mvn install:install-file -Dfile=target/program.c++ -DgroupId=com.github.luxlang -DartifactId=lux-c++ -Dversion=0.8.0-SNAPSHOT -Dpackaging=c++

cd ~/lux/lux-c++/ && mvn deploy:deploy-file \
-Durl=https://$NEXUS_USERNAME:$NEXUS_PASSWORD@oss.sonatype.org/content/repositories/snapshots/ \
-Dfile=target/program.c++ \
-DgroupId=com.github.luxlang \
-DartifactId=lux-c++ \
-Dversion=0.8.0-SNAPSHOT \
-Dpackaging=c++
```

# Release

```
LUX_PROJECT=lux-c++ && \
LUX_VERSION=0.7.0 && \
cd ~/lux/$LUX_PROJECT/ && \
lux pom && \
mv pom.xml RELEASE/$LUX_PROJECT-$LUX_VERSION.pom && \
mv target/program.c++ RELEASE/$LUX_PROJECT-$LUX_VERSION.c++ && \
cd RELEASE && \
touch README.md && \
zip $LUX_PROJECT-$LUX_VERSION-sources.jar README.md && \
zip $LUX_PROJECT-$LUX_VERSION-javadoc.jar README.md && \
zip $LUX_PROJECT-$LUX_VERSION.jar README.md && \
rm README.md && \
for file in *.*; do gpg -ab $file; done
```