octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #47372] Memory leaks and segmentation faults i


From: Rik
Subject: [Octave-bug-tracker] [bug #47372] Memory leaks and segmentation faults in Octave
Date: Fri, 08 Apr 2016 17:08:51 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0

Follow-up Comment #109, bug #47372 (project octave):

@Avinoam: I do two things slightly differently in my MXE build.

First, are you sure you are not overwriting the tar.gz file with a different
one from the MXE directory.


## You are currently in octave-build directory when this is executed.
cp octave-*.tar.gz ~/mxe-octave/pkg
cd ../mxe-octave
hg -v pull
hg -v update
## You are now in mxe-octave directory
## The command below will copy any tar.gz files at the top-level of
mxe-octave
## into the pkg directory, overwriting the tar.gz file from step 1.
cp octave-*.tar.gz ~/mxe-octave/pkg


Second, does the stanza


./configure --enable-octave=default
touch src/default-octave.mk


actually prevent MXE from downloading a tar.gz file from the Hydra build
server?

I usually explicitly prevent that by applying this patch to
default-octave.mk.


diff -r 5ae69991eaa1 src/default-octave.mk
--- a/src/default-octave.mk     Tue Apr 05 17:18:50 2016 -0400
+++ b/src/default-octave.mk     Fri Apr 08 09:57:17 2016 -0700
@@ -7,10 +7,10 @@
 PKG             := default-octave
 $(PKG)_IGNORE   :=
 $(PKG)_VERSION  := 4.1.0+
-$(PKG)_CHECKSUM := ## No checksum
+#$(PKG)_CHECKSUM := ## No checksum
 $(PKG)_SUBDIR   := octave-$($(PKG)_VERSION)
 $(PKG)_FILE     := octave-$($(PKG)_VERSION).tar.gz
-$(PKG)_URL      :=
http://hydra.nixos.org/job/gnu/octave-default/tarball/latest/download
+#$(PKG)_URL      :=
http://hydra.nixos.org/job/gnu/octave-default/tarball/latest/download
 ifeq ($(USE_SYSTEM_FONTCONFIG),no)
   $(PKG)_FONTCONFIG := fontconfig
 endif


There is no URL specified, and no checksum either, so MXE is forced to use the
P(PKG)_FILE octave...tar.gz which is what I want.




    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?47372>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]