Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
7ddc7f4b
Commit
7ddc7f4b
authored
10 years ago
by
Jonathan Lambrechts
Browse files
Options
Downloads
Patches
Plain Diff
cmake : add an option to use libtcmlloc (a faster malloc implementation
than glibc)
parent
6b929c5d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+9
-0
9 additions, 0 deletions
CMakeLists.txt
with
9 additions
and
0 deletions
CMakeLists.txt
+
9
−
0
View file @
7ddc7f4b
...
@@ -83,6 +83,7 @@ opt(SGEOM "Enable SGEOM interface to OCC (experimental)" OFF)
...
@@ -83,6 +83,7 @@ opt(SGEOM "Enable SGEOM interface to OCC (experimental)" OFF)
opt
(
SLEPC
"Enable SLEPc eigensolvers (required for conformal compounds)"
${
DEFAULT
}
)
opt
(
SLEPC
"Enable SLEPc eigensolvers (required for conformal compounds)"
${
DEFAULT
}
)
opt
(
SOLVER
"Enable built-in finite element solvers (required for compounds)"
${
DEFAULT
}
)
opt
(
SOLVER
"Enable built-in finite element solvers (required for compounds)"
${
DEFAULT
}
)
opt
(
TAUCS
"Enable Taucs linear solver (alternative to PETSc)"
${
DEFAULT
}
)
opt
(
TAUCS
"Enable Taucs linear solver (alternative to PETSc)"
${
DEFAULT
}
)
opt
(
TCMALLOC
"Enable libtcmalloc, a fast malloc implementation but that does not release memory"
OFF
)
opt
(
TETGEN
"Enable Tetgen 3D initial mesh generator"
${
DEFAULT
}
)
opt
(
TETGEN
"Enable Tetgen 3D initial mesh generator"
${
DEFAULT
}
)
opt
(
TETGEN_OLD
"Enable older version of Tetgen"
OFF
)
opt
(
TETGEN_OLD
"Enable older version of Tetgen"
OFF
)
opt
(
VORO3D
"Enable Voro3D (for hex meshing, experimental)"
${
DEFAULT
}
)
opt
(
VORO3D
"Enable Voro3D (for hex meshing, experimental)"
${
DEFAULT
}
)
...
@@ -389,6 +390,14 @@ if(ENABLE_BLAS_LAPACK)
...
@@ -389,6 +390,14 @@ if(ENABLE_BLAS_LAPACK)
endif
(
BLAS_LAPACK_LIBRARIES
)
endif
(
BLAS_LAPACK_LIBRARIES
)
endif
(
ENABLE_BLAS_LAPACK
)
endif
(
ENABLE_BLAS_LAPACK
)
if
(
ENABLE_TCMALLOC
)
find_library
(
TCMALLOC tcmalloc
)
if
(
TCMALLOC
)
set_config_option
(
HAVE_TCMALLOC
"TCMalloc"
)
list
(
APPEND EXTERNAL_LIBRARIES
${
TCMALLOC
}
)
endif
(
TCMALLOC
)
endif
(
ENABLE_TCMALLOC
)
add_subdirectory
(
Common
)
add_subdirectory
(
Common
)
add_subdirectory
(
Numeric
)
add_subdirectory
(
Numeric
)
add_subdirectory
(
Geo
)
add_subdirectory
(
Geo
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment