Search found 4 matches
- Wed Sep 13, 2017 7:08 pm
- Forum: Lessons on Programming
- Topic: Smart BASIC Programming. Lesson 6
- Replies: 5
- Views: 6988
- Flag:
Re: Smart BASIC Programming. Lesson 6
It's a multi-way branch. Executes the statements after the CASE statement which matches the SELECT CASE expression, then skips to the END SELECT statement. If there is no match, and a CASE ELSE statement is present, then execution defaults to the statements following the CASE ELSE. Example: select c...
- Wed Sep 13, 2017 6:55 pm
- Forum: Lessons on Programming
- Topic: Smart BASIC Programming. Lesson 6
- Replies: 5
- Views: 6988
- Flag:
Re: Smart BASIC Programming. Lesson 6
Does Smart Basic have a Select Case function?
- Mon Sep 04, 2017 8:13 pm
- Forum: BASIC SDK for Xcode
- Topic: Xcode build error
- Replies: 3
- Views: 3971
- Flag:
Re: Xcode build error
The notes say "Template project "BASIC SDK" contains two libraries: "libSB-dev.a" for running on iOS device and "libSB-sim.a" for running on iOS Simulator."
I wanted to run on my iPad Pro so I renamed "libSB-dev.a" to "libSB.a" Was that wrong?
I wanted to run on my iPad Pro so I renamed "libSB-dev.a" to "libSB.a" Was that wrong?
- Sun Sep 03, 2017 4:36 pm
- Forum: BASIC SDK for Xcode
- Topic: Xcode build error
- Replies: 3
- Views: 3971
- Flag:
Xcode build error
Xcode build for Turtle succeeds when I use libSB-sim.a, but when I use libSB-dev.a it fails and shows:
ld: warning: ignoring file /Users/jimlincoln/Downloads/Turtle/libSB.a, missing required architecture i386 in file /Users/jimlincoln/Downloads/Turtle/libSB.a (2 slices)
and similar messages.
ld: warning: ignoring file /Users/jimlincoln/Downloads/Turtle/libSB.a, missing required architecture i386 in file /Users/jimlincoln/Downloads/Turtle/libSB.a (2 slices)
and similar messages.