-
Notifications
You must be signed in to change notification settings - Fork 184
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
[FPM] add fpm support #437
Closed
Closed
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b3faff6
add fpm support
zoziha 1589588
modify README.md
zoziha 191f078
modify makefile & README.md
zoziha cdea679
fix README.md
zoziha 5ce422a
fix fpm.toml
zoziha eeab2ba
rm fpm test
zoziha 38d3c07
fix README.md
zoziha e079083
fix common.fypp
zoziha File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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,18 @@ | ||
name = "stdlib" | ||
version = "0.0.1" | ||
license = "MIT" | ||
author = "stdlib contributors" | ||
maintainer = "https://github.com/fortran-lang/stdlib" | ||
copyright = "2019-2021 stdlib contributors" | ||
description = "Fortran Standard Library" | ||
categories = ["numerical"] | ||
keywords = ["numerical", "stdlib"] | ||
|
||
# cd stdlib && make dev -f Makefile.manual && fpm build | ||
[library] | ||
source-dir="src/fpm" | ||
|
||
[build] | ||
auto-executables = false | ||
auto-examples = false | ||
auto-tests = false |
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,29 @@ | ||
|
||
SRCFYPP := $(wildcard *.fypp) # Get all fypp files | ||
SRCFYPP := $(filter-out common.fypp, $(SRCFYPP)) # Filter some individual files | ||
|
||
SRCF90 := $(wildcard *.f90 *.F90) # Get all f90 files | ||
SRCF90 := $(filter-out f08estop.f90, $(SRCF90)) # Filter some individual files | ||
|
||
# FPMSRCDIR: Output source files path | ||
FPMSRCDIR = fpm/ | ||
VPATH = $(FPMSRCDIR) | ||
|
||
SRCGEN := $(SRCFYPP:.fypp=.f90) | ||
|
||
.PHONY: all clean | ||
|
||
all: $(SRCGEN) CPF90 | ||
|
||
clean: | ||
cd $(FPMSRCDIR); $(RM) $(SRCGEN) $(SRCF90) | ||
|
||
# GEN F90 files to `fpm/` from FYPP files | ||
$(SRCGEN): %.f90: %.fypp common.fypp | ||
@mkdir -p fpm | ||
fypp $(FYPPFLAGS) $< $(FPMSRCDIR)$@ | ||
|
||
# COPY F90 files to `fpm/` | ||
CPF90: $(SRCF90) | ||
@mkdir -p fpm | ||
cp -u $^ $(FPMSRCDIR) |
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
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,29 @@ | ||
submodule (stdlib_error) estop | ||
|
||
implicit none | ||
|
||
contains | ||
|
||
module procedure error_stop | ||
! Aborts the program with nonzero exit code | ||
! | ||
! The "stop <character>" statement generally has return code 0. | ||
! To allow non-zero return code termination with character message, | ||
! error_stop() uses the statement "error stop", which by default | ||
! has exit code 1 and prints the message to stderr. | ||
! An optional integer return code "code" may be specified. | ||
! | ||
! Example | ||
! ------- | ||
! | ||
! call error_stop("Invalid argument") | ||
|
||
if(present(code)) then | ||
write(stderr,*) msg | ||
error stop code | ||
else | ||
error stop msg | ||
endif | ||
end procedure | ||
|
||
end submodule estop |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
attention: src/fpm