$
means shell prompt
-
Install gcc
- go to ~/src
$ cd ~/src
- install gcc (for cmake, takes few HOURS)
! Hello World | |
! |
#CONDOR_HOST = reynolds-master.reynol.dz | |
# | |
#COLLECTOR_NAME = TEFPL at $(FULL_HOSTNAME)) | |
#START = $(CS_START) | |
#SUSPEND = $(CS_SUSPEND) | |
#CONTINUE = $(CS_CONTINUE) | |
#PREEMPT = $(CS_PREEMPT) | |
#KILL = $(CS_KILL) | |
# | |
#DAEMON_LIST = MASTER, SCHEDD, STARTD |
=== Verbose logging started: 2015-08-17 12:18:33 Build type: SHIP UNICODE 5.00.10011.00 Calling process: C:\WINDOWS\system32\msiexec.exe === | |
MSI (c) (94:EC) [12:18:33:722]: Font created. Charset: Req=129, Ret=129, Font: Req=굴림, Ret=굴림 | |
MSI (c) (94:EC) [12:18:33:738]: Font created. Charset: Req=129, Ret=129, Font: Req=굴림, Ret=굴림 | |
MSI (c) (94:4C) [12:18:33:738]: Resetting cached policy values | |
MSI (c) (94:4C) [12:18:33:738]: Machine policy value 'Debug' is 0 |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.19370138645172119</real> | |
<key>Green Component</key> | |
<real>0.15575926005840302</real> |
#!/bin/bash | |
# inspired from travis CI julia support | |
# https://github.com/travis-ci/travis-build/blob/1b50ac7aeff53e2fed4c629920ebbb4814e71ea8/lib/travis/build/script/julia.rb | |
echo 'Installing Julia' | |
CURL_USER_AGENT="Travis-CI $(curl --version | head -n 1)" | |
JULIA_URL="https://julialangnightlies-s3.julialang.org/bin/linux/x64/julia-latest-linux64.tar.gz" | |
mkdir -p ~/julia | |
curl -A "$CURL_USER_AGENT" -k -s -L --retry 7 $JULIA_URL | tar -C ~/julia -x -z --strip-components=1 -f - |
<?xml version="1.0" encoding="UTF-8" ?> | |
<!DOCTYPE Xdmf SYSTEM "Xdmf.dtd" []> | |
<Xdmf Version="3.0" xmlns:xi="http://www.w3.org/2001/XInclude"> | |
<Domain> | |
<Grid Name="Fluid" GridType="Collection" CollectionType="Temporal"> | |
<Grid Name="Fluid0000" GridType="Uniform"> | |
<Time Value="0.0" /> | |
<Topology Name="FluidTopo" TopologyType="3DCoRectMesh" Dimensions="192 192 192" /> | |
<Geometry Name="FluidGeo" GeometryType="ORIGIN_DXDYDZ"> | |
<DataItem Name="FluidOrigin" Format="XML" Dimensions="3" NumberType="Float" Precision="8"> |
$
means shell promptInstall gcc
$ cd ~/src
$
means shell promptInstall gcc (Takes very long time, about 6 hours)
$ cd ~/src
gcc
binutils
get recent version of https://ftp.gnu.org/gnu/binutils/
cd ~
mkdir src
copy this file to src
directory
program main | |
use ISO_C_BINDING | |
implicit none | |
include 'fftw3.f03' | |
real, allocatable :: test_in(:) | |
integer(8) :: plan_c2r, plan_r2c | |
integer :: n, i |