forked from calculix/Cubit-CalculiX
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7c1a3e
commit 7fb5321
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -1,10 +1,31 @@ | ||
to use calculix with pardiso you need to install some intel libraries | ||
|
||
|
||
intel for pardiso | ||
only ifort | ||
https://www.intel.com/content/www/us/en/developer/articles/tool/oneapi-standalone-components.html#fortran | ||
|
||
https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?operatingsystem=linux&distributions=offline | ||
https://www.intel.com/content/www/us/en/developer/tools/oneapi/hpc-toolkit-download.html?operatingsystem=linux&distributions=offline | ||
|
||
|
||
IMPORTANT | ||
add the library path into etc/environment | ||
sudo gedit /etc/environment | ||
LD_LIBRARY_PATH="/opt/intel/oneapi/mkl/latest/lib:/opt/intel/oneapi/compiler/latest/lib:$LD_LIBRARY_PATH"; export LD_LIBRARY_PATH | ||
|
||
for compilation of ccx | ||
|
||
mkdir build | ||
cd build | ||
wget feacluster.com/install/install | ||
perl install | ||
|
||
https://www.intel.com/content/www/us/en/docs/fortran-compiler/get-started-guide/2025-0/get-started-on-linux.html | ||
|
||
IMPORTANT RUN BEFORE RUNNINT PERL INSTALL | ||
source /opt/intel/oneapi/setvars.sh | ||
|
||
|
||
|
||
|