Skip to content

Commit 602927a

Browse files
committed
Removed mentions of 32-bit platforms from readme.md and build_then_launch.sh
1 parent 292edec commit 602927a

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

build_then_launch.sh

-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/bin/bash
22

3-
file_x86="./io.sloeber.product/target/products/io.sloeber.product/linux/gtk/x86/Sloeber/sloeber-ide"
43
file_x86_64="./io.sloeber.product/target/products/io.sloeber.product/linux/gtk/x86_64/Sloeber/sloeber-ide"
54
file=""
65

@@ -23,11 +22,6 @@ fi
2322

2423
echo "Searching for the Eclipse executable (with our plugin pre-packaged) to launch"
2524
#Find an executable if we made it successfully
26-
if [[ -x "$file_x86" ]]
27-
then
28-
#echo "File '$file_x86' is executable"
29-
file=$file_x86
30-
fi
3125

3226
if [[ -x "$file_x86_64" ]]
3327
then

readme.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Please install [git](http://git-scm.com/downloads) and [maven](http://maven.apac
2121

2222
Java 17 is required.
2323

24+
A 64-bit OS is required.
25+
26+
2427
## Build from the command line from source for your os and the default eclipse instance
2528
```bash
2629
git clone https://github.com/Sloeber/arduino-eclipse-plugin sloeber
@@ -45,7 +48,6 @@ You can control the maven build with the following profiles:
4548

4649
* latest (default, builds against the latest versions)
4750
* SDK (builds a Sloeber you can program Sloeber in. With Java.)
48-
* win32 (builds for 32 bit windows)
4951
* win64
5052
* linux64
5153
* mac64
@@ -55,18 +57,15 @@ You can control the maven build with the following profiles:
5557

5658
* Build the latest version for the platform you are running on:
5759

58-
`mvn clean verify -DskipTests=true`
60+
`mvn clean verify -PNOSDK -DskipTests=true`
5961

6062
* Build Eclipse + Sloeber for 64-bit Windows:
6163
`mvn clean verify -Pwin64,latest,NOSDK -DskipTests=true`
6264

6365
* Build Eclipse + Sloeber for 64-bit Linux:
6466
`mvn clean verify -Plinux64,latest,NOSDK -DskipTests=true`
6567

66-
* Build Eclipse + Sloeber for 32-bit Linux:
67-
`mvn clean verify -Plinux32,latest,NOSDK -DskipTests=true`
68-
69-
* Build the Sloeber SDK (for Sloeber programmers):
68+
* Build the Sloeber SDK for 64-bit Windows (for Sloeber programmers):
7069
`mvn clean verify -PSDK,win64,latest -DskipTests=true`
7170

7271
# Importing your build into another Eclipse

0 commit comments

Comments
 (0)