-
Notifications
You must be signed in to change notification settings - Fork 726
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
1st gfortran stanza target for raspberry pi (add aarch64 and armv7l) #1301
1st gfortran stanza target for raspberry pi (add aarch64 and armv7l) #1301
Conversation
TYPE: new feature KEYWORDS: raspberry pi SOURCE: internal DESCRIPTION OF CHANGES: An additional string, `armv7l`, has been added to the first gfortran stanza so that this may be a keyword for search fro Raspberry Pi's `uname -a` output. LIST OF MODIFIED FILES: modified: arch/configure.defaults TESTS CONDUCTED: 1. Previously, a Raspberry Pi build returned this: ``` ********************************************************* *** ERROR ERROR ERROR ERROR *** *** *** *** Configuration not found in configure.defaults *** ********************************************************* ``` 2. After this PR, the configure command is able to fine a target. ``` ----------------------------------------------------------------------- Please select from among the following Linux armv7l options: 1. (serial) 2. (smpar) 3. (dmpar) 4. (dm+sm) GNU (gfortran/gcc) ``` 3. Expect jenkins to sail through without a hitch. RELEASE NOTES: Modifications to the WRF code now permit the model to be built on a Raspberry Pi with the GNU/8 compiler.
I am running 64bit Ubuntu Mate for Raspberry Pi on a Raspberry Pi 4 and get |
@djzurawski |
@djzurawski |
Yep got build options
|
@djzurawski |
Daniel Zurawski. Unaffiliated? |
…rf-model#1301) TYPE: new feature KEYWORDS: raspberry pi SOURCE: Daniel Zurawski and internal DESCRIPTION OF CHANGES: Additional strings, `armv7l` and `aarch64`, have been added to the first gfortran configuration stanza so that these may be keywords for search from Raspberry Pi's `uname -a` output. No new stanza was added for the gfortran target, so no re-numbering is required for existing scripts that are reliant on such things as "32 = Gfortran for Linux with a serial build". Associated with this PR, wrf-model#1300 (Inconsistent arg types (integer kind) across subroutine call) is also required to get the Raspberry Pi to build successfully. LIST OF MODIFIED FILES: modified: arch/configure.defaults TESTS CONDUCTED: 1. Previously, a Raspberry Pi build returned this: ``` ********************************************************* *** ERROR ERROR ERROR ERROR *** *** *** *** Configuration not found in configure.defaults *** ********************************************************* ``` 2. After this PR, the configure command is able to find a target (raspian buster): ``` ----------------------------------------------------------------------- Please select from among the following Linux armv7l options: 1. (serial) 2. (smpar) 3. (dmpar) 4. (dm+sm) GNU (gfortran/gcc) ``` 3. After this PR, the configure command is able to find a target (ubuntu mate): ``` ------------------------------------------------------------------------ Please select from among the following Linux aarch64 options: 1. (serial) 2. (smpar) 3. (dmpar) 4. (dm+sm) GNU (gfortran/gcc) ``` 4. Jenkins testing is all pass. RELEASE NOTES: Modifications to the WRF code now permit the model to be built on a Raspberry Pi with the GNU/8 compiler.
TYPE: new feature
KEYWORDS: raspberry pi
SOURCE: Daniel Zurawski and internal
DESCRIPTION OF CHANGES:
Additional strings,
armv7l
andaarch64
, have been added to the first gfortran configuration stanzaso that these may be keywords for search from Raspberry Pi's
uname -a
output. No newstanza was added for the gfortran target, so no re-numbering is required for existing scripts that
are reliant on such things as "32 = Gfortran for Linux with a serial build".
Associated with this PR, #1300 (Inconsistent arg types (integer kind) across subroutine call) is
also required to get the Raspberry Pi to build successfully.
LIST OF MODIFIED FILES:
modified: arch/configure.defaults
TESTS CONDUCTED:
RELEASE NOTES: Modifications to the WRF code now permit the model to be built on a Raspberry Pi with the GNU/8 compiler.