Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
isce2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Narayanarao Bhogapurapu
isce2
Merge requests
!1
Create docker image for custom isce2 build
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Create docker image for custom isce2 build
sshah/isce2:main
into
main
Overview
0
Commits
9
Pipelines
1
Changes
4
Merged
Sujen Shah
requested to merge
sshah/isce2:main
into
main
11 months ago
Overview
0
Commits
9
Pipelines
1
Changes
4
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
9a6e7804
9 commits,
11 months ago
4 files
+
64
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
configuration/sconsConfigFile.py
+
1
−
1
Options
@@ -35,7 +35,7 @@ import sys
COMPILER_OPTIONS
=
{
'
COMPILER_OPTIMIZATION
'
:
'
-O2
'
,
'
COMPILER_WARNING
'
:
'
-Wall
'
}
LINKER_OPTIONS
=
{
'
LINKFLAGS
'
:
'
-fopenmp
'
}
# some systems don't need it, but ubuntu does
GFORTRANFLAGS
=
[
'
-ffixed-line-length-none
'
,
'
-fno-second-underscore
'
,
'
-fPIC
'
,
'
-fno-range-check
'
,
'
-
fallow
-argument-mismatch
'
]
GFORTRANFLAGS
=
[
'
-ffixed-line-length-none
'
,
'
-fno-second-underscore
'
,
'
-fPIC
'
,
'
-fno-range-check
'
,
'
-
Wno
-argument-mismatch
'
]
GCCFLAGS
=
[
'
-fPIC
'
]
if
'
DEVELOPER
'
in
os
.
environ
:
GFORTRANFLAGS
.
append
(
'
-fbounds-check
'
)
Loading