|
22 | 22 | os.environ["CC"] = "mpicc"
|
23 | 23 | os.environ["CXX"] = "mpicxx"
|
24 | 24 |
|
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 |
| - |
30 | 25 | # These setup should reproduce calling wmake to compile OpenFOAM libraries and solvers
|
31 | 26 | ext = [
|
32 | 27 | Extension(
|
|
44 | 39 | os.getenv("FOAM_SRC") + "/OSspecific/POSIX/lnInclude",
|
45 | 40 | os.getenv("FOAM_LIBBIN"),
|
46 | 41 | 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", |
51 | 42 | numpy.get_include(),
|
52 | 43 | ],
|
53 | 44 | # These are from Make/options:EXE_LIBS
|
|
57 | 48 | # All other flags for OpenFOAM, users don't need to touch this
|
58 | 49 | extra_compile_args=[
|
59 | 50 | # "-DFULLDEBUG -g -O0", # this is for debugging
|
60 |
| - "-std=c++11", |
61 |
| - "-Wno-deprecated-copy", |
| 51 | + "-std=c++17", |
62 | 52 | "-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", |
66 | 58 | "-DWM_DP",
|
67 | 59 | "-DWM_LABEL_SIZE=32",
|
68 | 60 | "-Wall",
|
69 | 61 | "-Wextra",
|
| 62 | + "-Wno-deprecated-copy", |
70 | 63 | "-Wnon-virtual-dtor",
|
71 | 64 | "-Wno-unused-parameter",
|
72 | 65 | "-Wno-invalid-offsetof",
|
|
75 | 68 | "-ftemplate-depth-100",
|
76 | 69 | "-fPIC",
|
77 | 70 | "-c",
|
78 |
| - codiFlag, |
79 | 71 | ],
|
80 | 72 | # 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"], |
82 | 74 | )
|
83 | 75 | ]
|
84 | 76 |
|
|
0 commit comments