forked from hyp/flang
-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.txt
73 lines (53 loc) · 2.25 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//===----------------------------------------------------------------------===//
// Fortran Language Family Front-end
//===----------------------------------------------------------------------===//
flang:
n. 1. A miner's two-pointed pick.
Flang is a Fortran front-end.
//===----------------------------------------------------------------------===//
// Compiling Flang (master branch)
//===----------------------------------------------------------------------===//
Download LLVM source and move to a branch with a reference known to work with
Flang.
> git clone https://github.com/llvm-mirror/llvm.git
> cd llvm
> git clone http://llvm.org/git/llvm.git
Download the Flang source code within the LLVM tree, the two will be compiled
together.
> cd llvm/tools & git clone git://github.com/llvm-flang/flang.git
Compile LLVM and Flang together.
> mkdir build
> cd build & cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
> cd build & make
> cd build & make install
You will also need to install the Flang standard library, which the Flang
compiler links to by default. This is built outside the LLVM tree.
> git clone git://github.com/llvm-flang/libflangrt.git
> cd libflangrt
> mkdir build
> cd build & cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
> cd build & make
> cd build & make install
//===----------------------------------------------------------------------===//
// Using flang
//===----------------------------------------------------------------------===//
Flang's driver will instruct the linker to link with the libflang runtime.
You can get libflang at https://github.com/llvm-flang/libflangrt . Once you have libflang,
you'll need to tell flang where it is - you can use the -L option (e.g. -L~/libflang).
//===----------------------------------------------------------------------===//
// To Do List
//===----------------------------------------------------------------------===//
Short term:
* Fix lexing bugs
- Fixed form for numerical literals (i.e. ignore whitespace)
- Continuations in BOZ literals
- Others
* 'INCLUDE' which search for files in the directory of the current file first.
* Full parsing of statements
Long term:
* Flang driver (?)
* Parsing GNU modules
* Add (or hoist) Clang style TargetInfo class template
Longer term:
* Fortran90/95 support
* IO support.