Skip to content
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

DM-18895: apply upstream bugfix, build 64-bit version #3

Merged
merged 3 commits into from
May 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.sconf_temp
.sconsign.dblite
*.os
python/lsst/jointcal/cholmod/version.py
2 changes: 1 addition & 1 deletion lib/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ suiteparse = "SuiteSparse"
# We do not need the timer either, and compiling the routines
# associated to it is troublesome because the library they reside
# is different on different systems.
for flag in ("-fexceptions", "-DNSUPERNODAL", "-DNPARTITION","-DNTIMER"):
for flag in ("-fexceptions", "-DNSUPERNODAL", "-DNPARTITION","-DNTIMER", "-DDLONG"):
env["CFLAGS"].append(flag)
env["CXXFLAGS"].append(flag)

Expand Down
2 changes: 1 addition & 1 deletion src/cholmod_rowcolcounts.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
/* === initialize_node ====================================================== */
/* ========================================================================== */

static int initialize_node /* initial work for kth node in postordered etree */
static Int initialize_node /* initial work for kth node in postordered etree */
(
Int k, /* at the kth step of the algorithm (and kth node) */
Int Post [ ], /* Post [k] = i, the kth node in postordered etree */
Expand Down