-
Notifications
You must be signed in to change notification settings - Fork 178
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
refactor: change in structure of stdlib in order to compiler it using fypp script #675
base: master
Are you sure you want to change the base?
Changes from all commits
c46d76e
6d0bbbc
4e4b0d2
21212c8
35ed9b6
1608e14
d036311
0d4fc91
e88c922
9877ed4
2a6c429
21748c0
f941556
5904f32
cdebc20
2b63915
7c99e70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,16 @@ | ||||||
name = "stdlib" | ||||||
|
||||||
[dev-dependencies] | ||||||
test-drive.git = "https://github.com/fortran-lang/test-drive.git" | ||||||
|
||||||
[build] | ||||||
auto-examples = false | ||||||
auto-tests = true | ||||||
|
||||||
[preprocess.cpp] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should it be
Suggested change
? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, that is not used. But, we have not enabled |
||||||
macros = [ | ||||||
"PROJECT_VERSION_MAJOR=0", | ||||||
"PROJECT_VERSION_MINOR=1", | ||||||
"PROJECT_VERSION_PATCH=0", | ||||||
Comment on lines
+12
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we support extracting those values automatically in fpm? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, I think we should add support to extract them for the version number ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PR created for this fortran-lang/fpm#766 |
||||||
"MAXRANK=4", | ||||||
] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
submodule (stdlib_error) estop | ||
submodule (stdlib_error) f08estop | ||
|
||
implicit none | ||
|
||
|
This file was deleted.
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.
Why is that provided? IMO a link to
fpm
should be sufficient.