Skip to content

Commit 21620ee

Browse files
committedDec 10, 2024
Update for v4.
1 parent bce10c3 commit 21620ee

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed
 

‎pyofm/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '1.2.2'
1+
__version__ = '1.2.3'
22

33
from .pyOFM import PYOFM

‎src/setup.py

+8-16
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@
2222
os.environ["CC"] = "mpicc"
2323
os.environ["CXX"] = "mpicxx"
2424

25-
if os.getenv("WM_CODI_AD_FLAGS") is None:
26-
codiFlag = "-DCODI_AD_NONE"
27-
else:
28-
codiFlag = os.getenv("WM_CODI_AD_FLAGS")
29-
3025
# These setup should reproduce calling wmake to compile OpenFOAM libraries and solvers
3126
ext = [
3227
Extension(
@@ -44,10 +39,6 @@
4439
os.getenv("FOAM_SRC") + "/OSspecific/POSIX/lnInclude",
4540
os.getenv("FOAM_LIBBIN"),
4641
os.getenv("FOAM_USER_LIBBIN"),
47-
# CoDiPack and MeDiPack
48-
os.getenv("FOAM_SRC") + "/codipack/include",
49-
os.getenv("FOAM_SRC") + "/medipack/include",
50-
os.getenv("FOAM_SRC") + "/medipack/src",
5142
numpy.get_include(),
5243
],
5344
# These are from Make/options:EXE_LIBS
@@ -57,16 +48,18 @@
5748
# All other flags for OpenFOAM, users don't need to touch this
5849
extra_compile_args=[
5950
# "-DFULLDEBUG -g -O0", # this is for debugging
60-
"-std=c++11",
61-
"-Wno-deprecated-copy",
51+
"-std=c++17",
6252
"-m64",
63-
"-DOPENFOAM_PLUS=1812",
64-
"-Dlinux64",
65-
"-DWM_ARCH_OPTION=64",
53+
"-pthread",
54+
"-DOPENFOAM=2112",
55+
"-DDAOF_AD_TOOL_DCO_FOAM",
56+
#"-Dlinux64",
57+
#"-DWM_ARCH_OPTION=64",
6658
"-DWM_DP",
6759
"-DWM_LABEL_SIZE=32",
6860
"-Wall",
6961
"-Wextra",
62+
"-Wno-deprecated-copy",
7063
"-Wnon-virtual-dtor",
7164
"-Wno-unused-parameter",
7265
"-Wno-invalid-offsetof",
@@ -75,10 +68,9 @@
7568
"-ftemplate-depth-100",
7669
"-fPIC",
7770
"-c",
78-
codiFlag,
7971
],
8072
# Extra link flags for OpenFOAM, users don't need to touch this
81-
extra_link_args=["-Xlinker", "--add-needed", "-Xlinker", "--no-as-needed"],
73+
extra_link_args=["-shared", "-Xlinker", "--add-needed", "-Xlinker", "--no-as-needed"],
8274
)
8375
]
8476

0 commit comments

Comments
 (0)