-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
documenting current build procedure (WIP)
- Loading branch information
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# vcell-solvers | ||
Virtual Cell solvers [virtualcell/vcell-solvers](https://github.com/virtualcell/vcell-solvers) is a collection of numerical simulation codes used in the Virtual Cell framework [virtualcell/vcell](https://github.com/virtualcell/vcell)). | ||
|
||
## The Virtual Cell Project | ||
The Virtual Cell is a modeling and simulation framework for computational biology. For details see http://vcell.org and http://github.com/virtualcell. | ||
|
||
## Building VCell Solvers | ||
### Using VirtualBox and Vagrant | ||
* git clone https://github.com/virtualcell/vcell.git | ||
* cd vcell/VagrantBoxes | ||
### Building for Linux (64 bit) | ||
[details](VagrantBoxes/linux64/README.md) | ||
|
||
```bash | ||
$ cd linux64 | ||
$ vagrant up | ||
$ vagrant ssh -c /vagrant_numerics/build.sh | ||
$ vagrant halt | ||
``` | ||
### Building for Linux (32 bit) | ||
[details](VagrantBoxes/linux32/README.md) | ||
|
||
```bash | ||
$ cd linux32 | ||
$ vagrant up | ||
$ vagrant ssh -c /vagrant_numerics/build.sh | ||
$ vagrant halt | ||
``` | ||
### Building for Macos on a Mac **Apple only allows a Mac VM to run on Apple hardware** | ||
[details}(VagrantBoxes/mac64/README.md) | ||
|
||
```bash | ||
$ cd mac64 | ||
$ vagrant up | ||
$ vagrant ssh -c /vagrant/build.sh | ||
$ vagrant halt | ||
``` | ||
### Building for Windows (64 bit) on Windows | ||
[details: including building on other platforms](VagrantBoxes/win64/README.md) | ||
|
||
```bash | ||
$ cd win64 | ||
$ vagrant up | ||
$ vagrant powershell -c \vagrant\build.sh | ||
$ vagrant halt | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
##local solver builds | ||
|
||
##Travis-CI | ||
Travis-CI is used for builds of standalone solvers for Linux and macOS. | ||
see **<root>/.travis.yml** | ||
|
||
|
||
###Travis-CI configuration for Linux | ||
|
||
|
||
###Travis-CI build debugging for Linux | ||
|
||
###Travis-CI configuration for macOS | ||
|
||
###Travis-CI build debugging for macOS | ||
|
||
##Appveyor | ||
Appveyor is used for builds of standalone solvers for Windows. | ||
|
||
###Appveyor configuration for Windows | ||
|
||
###Appveyor debugging for Windows |