Skip to content
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

$qtbase is used before being assigned #236

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions linux-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,6 @@ chmod +x qt-linux-opensource-5.1.0-x86_64-offline.run
```
...run through the installation with default settings, although there is no reason to run Qt Creator.

If you do have Qt installed, this will force Qt to use. Don't do this if you don't need/want to. It will impact other Qt-based environments.
```bash
##if multiple qts are present, this let's us choose without changing path
sudo mkdir /etc/xdg/qtchooser
echo "$qtbase/bin" > default.conf
echo "$qtbase/lib" >> default.conf
sudo mv default.conf /etc/xdg/qtchooser/default.conf

```

Now we need to get our build environment to use this version of Qt. (Note: only tested on Qt-less systems so far.)
```bash
#64-bit
Expand All @@ -63,6 +53,16 @@ export PATH=$PATH:$qtbase/bin
cd ../../../
```

If you do have Qt installed, this will force Qt to use. Don't do this if you don't need/want to. It will impact other Qt-based environments.
```bash
##if multiple qts are present, this lets us choose without changing path
sudo mkdir /etc/xdg/qtchooser
echo "$qtbase/bin" > default.conf
echo "$qtbase/lib" >> default.conf
sudo mv default.conf /etc/xdg/qtchooser/default.conf

```

Time for Julia Studio. Clone from github and then build.
```bash
#anon clone
Expand Down