1. eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1579 views
Hi When i try to build euphoria on my Win 7 64 bit i get som errors. Can any one help? Thanks make -C "g:/build/openeuphoria/euphoria/mw32/eudist-build" -f eudist.mak make[2]: Entering directory `/g/build/openeuphoria/euphoria/mw32/eudist-build' make[2]: eudist.mak: No such file or directory make[2]: *** No rule to make target `eudist.mak'. Stop. make[2]: Leaving directory `/g/build/openeuphoria/euphoria/mw32/eudist-build' make[1]: *** [g:/build/openeuphoria/euphoria/mw32/eudist] Error 2 make[1]: Leaving directory `/g/build/openeuphoria/euphoria/source' make: *** [all] Error 2
2. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 06, 2013
- 1550 views
Hi When i try to build euphoria on my Win 7 64 bit i get som errors. Can any one help? Thanks make -C "g:/build/openeuphoria/euphoria/mw32/eudist-build" -f eudist.mak make[2]: Entering directory `/g/build/openeuphoria/euphoria/mw32/eudist-build' make[2]: eudist.mak: No such file or directory make[2]: *** No rule to make target `eudist.mak'. Stop. make[2]: Leaving directory `/g/build/openeuphoria/euphoria/mw32/eudist-build' make[1]: *** [g:/build/openeuphoria/euphoria/mw32/eudist] Error 2 make[1]: Leaving directory `/g/build/openeuphoria/euphoria/source' make: *** [all] Error 2
Where did you get the source code from?
Are you bootstraping with an Euphoria binary, or using a Translated C Source Code release?
3. Re: eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1537 views
Hi When i try to build euphoria on my Win 7 64 bit i get som errors. Can any one help? Thanks make -C "g:/build/openeuphoria/euphoria/mw32/eudist-build" -f eudist.mak make[2]: Entering directory `/g/build/openeuphoria/euphoria/mw32/eudist-build' make[2]: eudist.mak: No such file or directory make[2]: *** No rule to make target `eudist.mak'. Stop. make[2]: Leaving directory `/g/build/openeuphoria/euphoria/mw32/eudist-build' make[1]: *** [g:/build/openeuphoria/euphoria/mw32/eudist] Error 2 make[1]: Leaving directory `/g/build/openeuphoria/euphoria/source' make: *** [all] Error 2
Where did you get the source code from?
Are you bootstraping with an Euphoria binary, or using a Translated C Source Code release?
Sorry i forgot this vital info. Euphoria Interpreter v4.0.5 Windows, Using Managed Memory Revision Date: 2012-10-11, Id: 362497032f33 Using Mingw msys and pulled the code with hg pull -C default from scm.euphoria.org
4. Re: eudist.mak: No such file or directory
- Posted by mattlewis (admin) Jan 06, 2013
- 1560 views
When i try to build euphoria on my Win 7 64 bit i get som errors. Can any one help? Thanks
make -C "g:/build/openeuphoria/euphoria/mw32/eudist-build" -f eudist.mak
Euphoria Interpreter v4.0.5 Windows, Using Managed Memory Revision Date: 2012-10-11, Id: 362497032f33Using Mingw msys and pulled the code with hg pull -C default from scm.euphoria.org
It's not clear to me how you got the error. Did other things build first? Eudist is one of the last things to be built when you run "make all".
Also, you cannot translate a 64-bit version of euphoria with a 4.0 interpreter, because it has many built-in assumptions about things being 32-bits. You'll need to either first build a 32-bit 4.1 interpreter and use that as your eubin, or download a pre-built interpreter.
Matt
5. Re: eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1587 views
When i try to build euphoria on my Win 7 64 bit i get som errors. Can any one help? Thanks
make -C "g:/build/openeuphoria/euphoria/mw32/eudist-build" -f eudist.mak
Euphoria Interpreter v4.0.5 Windows, Using Managed Memory Revision Date: 2012-10-11, Id: 362497032f33Using Mingw msys and pulled the code with hg pull -C default from scm.euphoria.org
It's not clear to me how you got the error. Did other things build first? Eudist is one of the last things to be built when you run "make all".
Also, you cannot translate a 64-bit version of euphoria with a 4.0 interpreter, because it has many built-in assumptions about things being 32-bits. You'll need to either first build a 32-bit 4.1 interpreter and use that as your eubin, or download a pre-built interpreter.
Matt
Yes i know that i just assume that mingw by default build a 32 bit version. This is the command line is use export EUDIR= ./configure --build ../mw32 --eubin /g/euphoria/bin --prefix /g/euphoria make
6. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 06, 2013
- 1543 views
Hi When i try to build euphoria on my Win 7 64 bit i get som errors. Can any one help? Thanks make -C "g:/build/openeuphoria/euphoria/mw32/eudist-build" -f eudist.mak make[2]: Entering directory `/g/build/openeuphoria/euphoria/mw32/eudist-build' make[2]: eudist.mak: No such file or directory make[2]: *** No rule to make target `eudist.mak'. Stop. make[2]: Leaving directory `/g/build/openeuphoria/euphoria/mw32/eudist-build' make[1]: *** [g:/build/openeuphoria/euphoria/mw32/eudist] Error 2 make[1]: Leaving directory `/g/build/openeuphoria/euphoria/source' make: *** [all] Error 2
Where did you get the source code from?
Are you bootstraping with an Euphoria binary, or using a Translated C Source Code release?
Sorry i forgot this vital info. Euphoria Interpreter v4.0.5 Windows, Using Managed Memory Revision Date: 2012-10-11, Id: 362497032f33 Using Mingw msys and pulled the code with hg pull -C default from scm.euphoria.org
So what is inside of /g/build/openeuphoria/euphoria/mw32/eudist-build ?
Does eudist.mak exist? Does main-.c exist? Do you see any .c files at all?
7. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 06, 2013
- 1520 views
Did other things build first? Eudist is one of the last things to be built when you run "make all".
That's a good point ... if everything else built fine, and eudist was the only error, then everything is probably ok - you have all the other 4.1 binaries in this case, including the interpreter and the translator.
You probably don't need eudist (which is a tool that wraps the source code of euphoria code and include files into a single package for ease of transfer / debugging by devs) and if you do need it later on, you can build it yourself manually with the 4.1 binaries.
8. Re: eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1538 views
Did other things build first? Eudist is one of the last things to be built when you run "make all".
That's a good point ... if everything else built fine, and eudist was the only error, then everything is probably ok - you have all the other 4.1 binaries in this case, including the interpreter and the translator.
You probably don't need eudist (which is a tool that wraps the source code of euphoria code and include files into a single package for ease of transfer / debugging by devs) and if you do need it later on, you can build it yourself manually with the 4.1 binaries.
Thanks to both for looking into this. Sorry again for forgetting somthing. Neither eudist nor eudist-build are created. Please ask if you need more info.
9. Re: eudist.mak: No such file or directory
- Posted by mattlewis (admin) Jan 06, 2013
- 1535 views
Neither eudist nor eudist-build are created. Please ask if you need more info.
Did everything else build? Do you have a working interpreter and translator? You can run "make test" to execute the unit tests that come with euphoria.
Matt
10. Re: eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1504 views
Neither eudist nor eudist-build are created. Please ask if you need more info.
Did everything else build? Do you have a working interpreter and translator? You can run "make test" to execute the unit tests that come with euphoria.
Matt
This is the result i get.
$ make test
cd ../tests && EUDIR=g:/build/openeuphoria/euphoria EUCOMPILEDIR=g:/build/ope
neuphoria/euphoria \
/g/euphoria/bin/eui.exe -i ../include ../source/eutest.ex -i ../inclu
de -cc gcc \
-exe "g:/build/openeuphoria/euphoria/mw32/eui.exe" \
-ec "g:/build/openeuphoria/euphoria/mw32/euc.exe" \
-eubind "g:/build/openeuphoria/euphoria/mw32/eubind.exe" -eub g:/
build/openeuphoria/euphoria/mw32/eub.exe \
-lib "g:/build/openeuphoria/euphoria/mw32/eu.a" \
-log ; \
/g/euphoria/bin/eui.exe -i ../include ../source/eutest.ex -process-log > g:/b
itbucket/openeuphoria/euphoria/mw32/test-report.txt ; \
/g/euphoria/bin/eui.exe -i ../include ../source/eutest.ex -process-log -html
> g:/build/openeuphoria/euphoria/mw32/test-report.html
Specified binder via -eubind parameter was not found
cd ../tests && sh check_diffs.sh
Both std/memory.e and std/safe.e provide the same interface to std/machine.e....good.
The include std/safe.e provides as many symbols as as std/memory.e...good.
11. Re: eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1522 views
This command do not show any output on either msys or cmd. /g/bitbucket/openeuphoria/euphoria/mw32/eui -v
12. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 06, 2013
- 1519 views
This command do not show any output on either msys or cmd. /g/bitbucket/openeuphoria/euphoria/mw32/eui -v
Hmm... can you provide the contents of config.gnu ?
Also, a copy of the entire build process, from when you entered the configure/make to when it returned back to prompt?
13. Re: eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1501 views
This command do not show any output on either msys or cmd. /g/bitbucket/openeuphoria/euphoria/mw32/eui -v
Hmm... can you provide the contents of config.gnu ?
Also, a copy of the entire build process, from when you entered the configure/make to when it returned back to prompt?
Yes i know it's the wrong path but watching Wealer dealers on Discovery an programming at the same time does not match
config.gnu
# File generated from configure
CONFIGURE_PARAMS=--build ../mw32 --eubin /g/euphoria/bin --prefix /g/euphoria
EUBIN=/g/euphoria/bin
PREFIX=/g/euphoria
EBSD=
EOPENBSD=
ENETBSD=
EOSX=
ELINUX=
EMINGW=1
EUPHORIA=1
MANAGED_MEM=1
ALIGN4=0
TRANSLATE=eui euc.ex
ETARGET=EWINDOWS
ARCH=ix86
MSIZE=-m32
EFLAG=-d E32
CC_SUFFIX=gcc
CC_PREFIX=
RC_SUFFIX=windres
SCP=scp -C
SSH=ssh -C
HG=hg
TRUNKDIR=g:/bitbucket/openeuphoria/euphoria
BUILDDIR=g:/bitbucket/openeuphoria/euphoria/mw32
CYPTRUNKDIR=g:/bitbucket/openeuphoria/euphoria
CYPBUILDDIR=g:/bitbucket/openeuphoria/euphoria/mw32
XLTTARGETCC=gcc
NO_CYGWIN=
VERSION=4.1.0
The script i use for building .
## buildscript for eu 4.0.*
cd /g/bitbucket/openeuphoria/euphoria/source
export EUDIR=
./configure --build ../mw32 --eubin /g/euphoria/bin --prefix /g/euphoria
make
/g/bitbucket/openeuphoria/euphoria/mw32/eui -v
--
After running make test i found something that make do not understand
from test-report.html
Interpreted test files failed unexpectedly.: 4
These were: t_datetime.e t_filesys.e t_locale.e t_map.e
canonical_path() #12 0.000000 {80,82,79,71,82,65,126,49} {80,114,111,103,114,97,109,32,70,105,108,101,115,32,40,120,56,54,41} << -- 1.
canonical_path() #13
1.
PROGRA~1
Program Files (x86)
In win 7 you are not allowed access on c drive ?
14. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 06, 2013
- 1518 views
Also, a copy of the entire build process, from when you entered the configure/make to when it returned back to prompt?
I meant a copy&paste of the entire contents of the command prompt window (or rxvt / xterm / bash shell session). The makefile shows a lot of output which is useful for debugging issues in the build system itself.
15. Re: eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1537 views
Also, a copy of the entire build process, from when you entered the configure/make to when it returned back to prompt?
I meant a copy&paste of the entire contents of the command prompt window (or rxvt / xterm / bash shell session). The makefile shows a lot of output which is useful for debugging issues in the build system itself.
itbucket/openeuphoria/euphoria/mw32/intobj/backend.o g:/bitbucket/openeuphoria/euphor
ia/mw32/intobj/block.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/buildsys.o g:/b
itbucket/openeuphoria/euphoria/mw32/intobj/c_decl.o g:/bitbucket/openeuphoria/euphori
a/mw32/intobj/c_out.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/cmdline.o g:/bit
bucket/openeuphoria/euphoria/mw32/intobj/cominit.o g:/bitbucket/openeuphoria/euphoria
/mw32/intobj/common.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/compile.o g:/bit
bucket/openeuphoria/euphoria/mw32/intobj/compress.o g:/bitbucket/openeuphoria/euphori
a/mw32/intobj/console.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/convert.o g:/b
itbucket/openeuphoria/euphoria/mw32/intobj/coverage.o g:/bitbucket/openeuphoria/eupho
ria/mw32/intobj/datetime.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/dll.o g:/bi
tbucket/openeuphoria/euphoria/mw32/intobj/eds.o g:/bitbucket/openeuphoria/euphoria/mw
32/intobj/emit.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/error.o g:/bitbucket/
openeuphoria/euphoria/mw32/intobj/eui.o g:/bitbucket/openeuphoria/euphoria/mw32/intob
j/eumem.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/filesys.o g:/bitbucket/opene
uphoria/euphoria/mw32/intobj/fwdref.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/
get.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/global.o g:/bitbucket/openeuphor
ia/euphoria/mw32/intobj/info.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/init-.o
g:/bitbucket/openeuphoria/euphoria/mw32/intobj/init-0.o g:/bitbucket/openeuphoria/eu
phoria/mw32/intobj/inline.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/intinit.o
g:/bitbucket/openeuphoria/euphoria/mw32/intobj/io.o g:/bitbucket/openeuphoria/euphori
a/mw32/intobj/keylist.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/locale.o g:/bi
tbucket/openeuphoria/euphoria/mw32/intobj/machine.o g:/bitbucket/openeuphoria/euphori
a/mw32/intobj/main-.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/main.o g:/bitbuc
ket/openeuphoria/euphoria/mw32/intobj/map.o g:/bitbucket/openeuphoria/euphoria/mw32/i
ntobj/math.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/memory.o g:/bitbucket/ope
neuphoria/euphoria/mw32/intobj/mode.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/
msgtext.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/parser.o g:/bitbucket/openeu
phoria/euphoria/mw32/intobj/pathopen.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj
/platform.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/preproc.o g:/bitbucket/ope
neuphoria/euphoria/mw32/intobj/pretty.o g:/bitbucket/openeuphoria/euphoria/mw32/intob
j/primes.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/regex.o g:/bitbucket/openeu
phoria/euphoria/mw32/intobj/scanner.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/
scinot.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/search.o g:/bitbucket/openeup
horia/euphoria/mw32/intobj/sequence.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/
shift.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/sort.o g:/bitbucket/openeuphor
ia/euphoria/mw32/intobj/symstruct.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/sy
mtab.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/syncolor.o g:/bitbucket/openeup
horia/euphoria/mw32/intobj/text.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/toke
nize.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/types.o g:/bitbucket/openeuphor
ia/euphoria/mw32/intobj/utils.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/b
e_decompress.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_debug.o g:/bitb
ucket/openeuphoria/euphoria/mw32/intobj/back/be_execute.o g:/bitbucket/openeuphoria/e
uphoria/mw32/intobj/back/be_task.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/bac
k/be_main.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_alloc.o g:/bitbuck
et/openeuphoria/euphoria/mw32/intobj/back/be_callc.o g:/bitbucket/openeuphoria/euphor
ia/mw32/intobj/back/be_inline.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/b
e_machine.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_coverage.o g:/bitb
ucket/openeuphoria/euphoria/mw32/intobj/back/be_pcre.o g:/bitbucket/openeuphoria/euph
oria/mw32/intobj/back/be_rterror.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/bac
k/be_syncolor.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_runtime.o g:/b
itbucket/openeuphoria/euphoria/mw32/intobj/back/be_symtab.o g:/bitbucket/openeuphoria
/euphoria/mw32/intobj/back/be_socket.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj
/back/be_w.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_chartables.o g:/bitbuc
ket/openeuphoria/euphoria/mw32/pcre/pcre_compile.o g:/bitbucket/openeuphoria/euphoria
/mw32/pcre/pcre_config.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_dfa_exec.o
g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_exec.o g:/bitbucket/openeuphoria/e
uphoria/mw32/pcre/pcre_fullinfo.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_g
et.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_globals.o g:/bitbucket/openeup
horia/euphoria/mw32/pcre/pcre_info.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcr
e_maketables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_newline.o g:/bitbuck
et/openeuphoria/euphoria/mw32/pcre/pcre_ord2utf8.o g:/bitbucket/openeuphoria/euphoria
/mw32/pcre/pcreposix.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_refcount.o g
:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_study.o g:/bitbucket/openeuphoria/eu
phoria/mw32/pcre/pcre_tables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_try_
flipped.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_ucd.o g:/bitbucket/openeu
phoria/euphoria/mw32/pcre/pcre_valid_utf8.o g:/bitbucket/openeuphoria/euphoria/mw32/p
cre/pcre_version.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_xclass.o -lm
-o g:/bitbucket/openeuphoria/euphoria/mw32/eui.exe
gcc -mwindows g:/bitbucket/openeuphoria/euphoria/mw32/euiw.res g:/bitbucket/openeuph
oria/euphoria/mw32/intobj/0rror.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/0ync
olor.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/backend.o g:/bitbucket/openeuph
oria/euphoria/mw32/intobj/block.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/buil
dsys.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/c_decl.o g:/bitbucket/openeupho
ria/euphoria/mw32/intobj/c_out.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/cmdli
ne.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/cominit.o g:/bitbucket/openeuphor
ia/euphoria/mw32/intobj/common.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/compi
le.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/compress.o g:/bitbucket/openeupho
ria/euphoria/mw32/intobj/console.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/con
vert.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/coverage.o g:/bitbucket/openeup
horia/euphoria/mw32/intobj/datetime.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/
dll.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/eds.o g:/bitbucket/openeuphoria/
euphoria/mw32/intobj/emit.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/error.o g:
/bitbucket/openeuphoria/euphoria/mw32/intobj/eui.o g:/bitbucket/openeuphoria/euphoria
/mw32/intobj/eumem.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/filesys.o g:/bitb
ucket/openeuphoria/euphoria/mw32/intobj/fwdref.o g:/bitbucket/openeuphoria/euphoria/m
w32/intobj/get.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/global.o g:/bitbucket
/openeuphoria/euphoria/mw32/intobj/info.o g:/bitbucket/openeuphoria/euphoria/mw32/int
obj/init-.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/init-0.o g:/bitbucket/open
euphoria/euphoria/mw32/intobj/inline.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj
/intinit.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/io.o g:/bitbucket/openeupho
ria/euphoria/mw32/intobj/keylist.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/loc
ale.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/machine.o g:/bitbucket/openeupho
ria/euphoria/mw32/intobj/main-.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/main.
o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/map.o g:/bitbucket/openeuphoria/euph
oria/mw32/intobj/math.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/memory.o g:/bi
tbucket/openeuphoria/euphoria/mw32/intobj/mode.o g:/bitbucket/openeuphoria/euphoria/m
w32/intobj/msgtext.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/parser.o g:/bitbu
cket/openeuphoria/euphoria/mw32/intobj/pathopen.o g:/bitbucket/openeuphoria/euphoria/
mw32/intobj/platform.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/preproc.o g:/bi
tbucket/openeuphoria/euphoria/mw32/intobj/pretty.o g:/bitbucket/openeuphoria/euphoria
/mw32/intobj/primes.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/regex.o g:/bitbu
cket/openeuphoria/euphoria/mw32/intobj/scanner.o g:/bitbucket/openeuphoria/euphoria/m
w32/intobj/scinot.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/search.o g:/bitbuc
ket/openeuphoria/euphoria/mw32/intobj/sequence.o g:/bitbucket/openeuphoria/euphoria/m
w32/intobj/shift.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/sort.o g:/bitbucket
/openeuphoria/euphoria/mw32/intobj/symstruct.o g:/bitbucket/openeuphoria/euphoria/mw3
2/intobj/symtab.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/syncolor.o g:/bitbuc
ket/openeuphoria/euphoria/mw32/intobj/text.o g:/bitbucket/openeuphoria/euphoria/mw32/
intobj/tokenize.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/types.o g:/bitbucket
/openeuphoria/euphoria/mw32/intobj/utils.o g:/bitbucket/openeuphoria/euphoria/mw32/in
tobj/back/be_decompress.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_debu
g.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_execute.o g:/bitbucket/ope
neuphoria/euphoria/mw32/intobj/back/be_task.o g:/bitbucket/openeuphoria/euphoria/mw32
/intobj/back/be_main.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_alloc.o
g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_callc.o g:/bitbucket/openeuph
oria/euphoria/mw32/intobj/back/be_inline.o g:/bitbucket/openeuphoria/euphoria/mw32/in
tobj/back/be_machine.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_coverag
e.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_pcre.o g:/bitbucket/openeu
phoria/euphoria/mw32/intobj/back/be_rterror.o g:/bitbucket/openeuphoria/euphoria/mw32
/intobj/back/be_syncolor.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_run
time.o g:/bitbucket/openeuphoria/euphoria/mw32/intobj/back/be_symtab.o g:/bitbucket/o
peneuphoria/euphoria/mw32/intobj/back/be_socket.o g:/bitbucket/openeuphoria/euphoria/
mw32/intobj/back/be_w.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_chartables.
o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_compile.o g:/bitbucket/openeuphor
ia/euphoria/mw32/pcre/pcre_config.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre
_dfa_exec.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_exec.o g:/bitbucket/ope
neuphoria/euphoria/mw32/pcre/pcre_fullinfo.o g:/bitbucket/openeuphoria/euphoria/mw32/
pcre/pcre_get.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_globals.o g:/bitbuc
ket/openeuphoria/euphoria/mw32/pcre/pcre_info.o g:/bitbucket/openeuphoria/euphoria/mw
32/pcre/pcre_maketables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_newline.o
g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_ord2utf8.o g:/bitbucket/openeuphor
ia/euphoria/mw32/pcre/pcreposix.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_r
efcount.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_study.o g:/bitbucket/open
euphoria/euphoria/mw32/pcre/pcre_tables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcr
e/pcre_try_flipped.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_ucd.o g:/bitbu
cket/openeuphoria/euphoria/mw32/pcre/pcre_valid_utf8.o g:/bitbucket/openeuphoria/euph
oria/mw32/pcre/pcre_version.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_xclas
s.o -lm -o g:/bitbucket/openeuphoria/euphoria/mw32/euiw.exe
make[3]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make translator OBJDIR=transobj EBSD= CONFIG=config.gnu EDEBUG= EPROFILE=
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_decompress.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_decompress.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_debug.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_debug.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_execute.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_execute.o
be_execute.c: In function 'do_exec':
be_execute.c:5401:4: warning: 'top' may be used uninitialized in this function [-Wmay
be-uninitialized]
be_execute.c:2924:6: warning: 'obj_ptr' may be used uninitialized in this function [-
Wmaybe-uninitialized]
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_task.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_task.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_main.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_main.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_alloc.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_alloc.o
be_alloc.c: In function 'new_dbl_block':
be_alloc.c:994:2: warning: passing argument 1 of 'ERealloc' from incompatible pointer
type [enabled by default]
be_alloc.c:722:7: note: expected 'char *' but argument is of type 'struct free_block
**'
be_alloc.c:994:16: warning: assignment from incompatible pointer type [enabled by def
ault]
gcc -c -Wall -DEWINDOWS -mwindows -DEMINGW -m32 -DARCH=ix86 -fsigned-char -O3 -fno-
omit-frame-pointer -ffast-math -fno-defer-pop be_callc.c -og:/bitbucket/openeuphoria
/euphoria/mw32/transobj/back/be_callc.o
be_callc.c: In function 'call_c':
be_callc.c:1149:12: warning: variable 'arg_len' set but not used [-Wunused-but-set-va
riable]
gcc -finline-functions -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char
-ffast-math -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW be_in
line.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_inline.o
g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori
a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h"
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_machine.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_machine.o
be_machine.c: In function 'lock_file':
be_machine.c:1545:6: warning: variable 'fd' set but not used [-Wunused-but-set-variab
le]
be_machine.c: In function 'unlock_file':
be_machine.c:1603:19: warning: variable 'last' set but not used [-Wunused-but-set-var
iable]
be_machine.c:1603:12: warning: variable 'first' set but not used [-Wunused-but-set-va
riable]
be_machine.c:1601:6: warning: variable 'fd' set but not used [-Wunused-but-set-variab
le]
be_machine.c: In function 'internal_general_call_back':
be_machine.c:2588:9: warning: unused variable 'result' [-Wunused-variable]
be_machine.c: In function 'machine':
be_machine.c:1778:6: warning: 't' may be used uninitialized in this function [-Wmaybe
-uninitialized]
be_machine.c:1769:11: note: 't' was declared here
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_coverage.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_coverage.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_pcre.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_pcre.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_rterror.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_rterror.o
be_rterror.c: In function 'DisplayVar':
be_rterror.c:675:15: warning: 'len_required' may be used uninitialized in this functi
on [-Wmaybe-uninitialized]
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_syncolor.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_syncolor.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_runtime.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_runtime.o
be_runtime.c: In function 'EGets':
be_runtime.c:3869:3: warning: passing argument 1 of 'EFree' from incompatible pointer
type [enabled by default]
In file included from be_runtime.c:60:0:
be_alloc.h:161:14: note: expected 'char *' but argument is of type 's1_ptr'
be_runtime.c: In function 'make_arg_cv':
be_runtime.c:4894:6: warning: unused variable 'bs' [-Wunused-variable]
be_runtime.c:4893:6: warning: unused variable 'ns' [-Wunused-variable]
be_runtime.c: In function 'system_exec_call':
be_runtime.c:5050:2: warning: passing argument 3 of 'spawnvp' from incompatible point
er type [enabled by default]
In file included from be_runtime.c:44:0:
g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/process.h:129:42: note: exp
ected 'const char * const*' but argument is of type 'char * const*'
be_runtime.c: In function 'winkbhit':
be_runtime.c:5825:6: warning: variable 'c' set but not used [-Wunused-but-set-variabl
e]
be_runtime.c: In function 'RTFatal_va':
be_runtime.c:605:1: warning: 'noreturn' function does return [enabled by default]
be_runtime.c: In function 'EPrintf':
be_runtime.c:4351:12: warning: 'gval' may be used uninitialized in this function [-Wm
aybe-uninitialized]
be_runtime.c:4245:11: note: 'gval' was declared here
be_runtime.c:4470:31: warning: 'v_last' may be used uninitialized in this function [-
Wmaybe-uninitialized]
be_runtime.c: In function 'find':
be_runtime.c:3214:8: warning: 'da' may be used uninitialized in this function [-Wmayb
e-uninitialized]
be_runtime.c: In function 'find_from':
be_runtime.c:5997:8: warning: 'da' may be used uninitialized in this function [-Wmayb
e-uninitialized]
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_symtab.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_symtab.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_socket.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_socket.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -fsigned-char -ffast-math -fomit
-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeupho
ria/euphoria/mw32/transobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be
_w.c -og:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_w.o
be_w.c: In function 'show_console':
be_w.c:544:5: warning: pointer targets in passing argument 2 of 'GetConsoleMode' diff
er in signedness [-Wpointer-sign]
In file included from g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/windo
ws.h:49:0,
from be_w.c:40:
g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/wincon.h:146:13: note: expe
cted 'PDWORD' but argument is of type 'long int *'
make g:/bitbucket/openeuphoria/euphoria/mw32/euc.exe OBJDIR=transobj EBSD= CONFIG=con
fig.gnu EDEBUG= EPROFILE=
make[3]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori
a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h"
making euc.exe
gcc g:/bitbucket/openeuphoria/euphoria/mw32/euc.res g:/bitbucket/openeuphoria/euphor
ia/mw32/transobj/0rror.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/block.o g:/
bitbucket/openeuphoria/euphoria/mw32/transobj/buildsys.o g:/bitbucket/openeuphoria/eu
phoria/mw32/transobj/c_decl.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/c_out.
o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/cmdline.o g:/bitbucket/openeuphori
a/euphoria/mw32/transobj/cominit.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/c
ommon.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/compile.o g:/bitbucket/opene
uphoria/euphoria/mw32/transobj/compress.o g:/bitbucket/openeuphoria/euphoria/mw32/tra
nsobj/console.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/convert.o g:/bitbuck
et/openeuphoria/euphoria/mw32/transobj/coverage.o g:/bitbucket/openeuphoria/euphoria/
mw32/transobj/datetime.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/dll.o g:/bi
tbucket/openeuphoria/euphoria/mw32/transobj/eds.o g:/bitbucket/openeuphoria/euphoria/
mw32/transobj/emit.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/error.o g:/bitb
ucket/openeuphoria/euphoria/mw32/transobj/euc.o g:/bitbucket/openeuphoria/euphoria/mw
32/transobj/eumem.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/filesys.o g:/bit
bucket/openeuphoria/euphoria/mw32/transobj/fwdref.o g:/bitbucket/openeuphoria/euphori
a/mw32/transobj/get.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/global.o g:/bi
tbucket/openeuphoria/euphoria/mw32/transobj/info.o g:/bitbucket/openeuphoria/euphoria
/mw32/transobj/init-.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/init-0.o g:/b
itbucket/openeuphoria/euphoria/mw32/transobj/inline.o g:/bitbucket/openeuphoria/eupho
ria/mw32/transobj/io.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/keylist.o g:/
bitbucket/openeuphoria/euphoria/mw32/transobj/locale.o g:/bitbucket/openeuphoria/euph
oria/mw32/transobj/machine.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/main-.o
g:/bitbucket/openeuphoria/euphoria/mw32/transobj/main.o g:/bitbucket/openeuphoria/eu
phoria/mw32/transobj/map.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/math.o g:
/bitbucket/openeuphoria/euphoria/mw32/transobj/memory.o g:/bitbucket/openeuphoria/eup
horia/mw32/transobj/mode.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/msgtext.o
g:/bitbucket/openeuphoria/euphoria/mw32/transobj/parser.o g:/bitbucket/openeuphoria/
euphoria/mw32/transobj/pathopen.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/pl
atform.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/preproc.o g:/bitbucket/open
euphoria/euphoria/mw32/transobj/pretty.o g:/bitbucket/openeuphoria/euphoria/mw32/tran
sobj/primes.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/regex.o g:/bitbucket/o
peneuphoria/euphoria/mw32/transobj/scanner.o g:/bitbucket/openeuphoria/euphoria/mw32/
transobj/scinot.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/search.o g:/bitbuc
ket/openeuphoria/euphoria/mw32/transobj/sequence.o g:/bitbucket/openeuphoria/euphoria
/mw32/transobj/shift.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/sort.o g:/bit
bucket/openeuphoria/euphoria/mw32/transobj/symtab.o g:/bitbucket/openeuphoria/euphori
a/mw32/transobj/syncolor.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/text.o g:
/bitbucket/openeuphoria/euphoria/mw32/transobj/tokenize.o g:/bitbucket/openeuphoria/e
uphoria/mw32/transobj/traninit.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/typ
es.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/utils.o -fomit-frame-pointer -f
fast-math -O3 -Os g:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_decompres
s.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_debug.o g:/bitbucket/ope
neuphoria/euphoria/mw32/transobj/back/be_execute.o g:/bitbucket/openeuphoria/euphoria
/mw32/transobj/back/be_task.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/b
e_main.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_alloc.o g:/bitbucke
t/openeuphoria/euphoria/mw32/transobj/back/be_callc.o g:/bitbucket/openeuphoria/eupho
ria/mw32/transobj/back/be_inline.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/b
ack/be_machine.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_coverage.o
g:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_pcre.o g:/bitbucket/openeuph
oria/euphoria/mw32/transobj/back/be_rterror.o g:/bitbucket/openeuphoria/euphoria/mw32
/transobj/back/be_syncolor.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be
_runtime.o g:/bitbucket/openeuphoria/euphoria/mw32/transobj/back/be_symtab.o g:/bitbu
cket/openeuphoria/euphoria/mw32/transobj/back/be_socket.o g:/bitbucket/openeuphoria/e
uphoria/mw32/transobj/back/be_w.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_c
hartables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_compile.o g:/bitbucket/
openeuphoria/euphoria/mw32/pcre/pcre_config.o g:/bitbucket/openeuphoria/euphoria/mw32
/pcre/pcre_dfa_exec.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_exec.o g:/bit
bucket/openeuphoria/euphoria/mw32/pcre/pcre_fullinfo.o g:/bitbucket/openeuphoria/euph
oria/mw32/pcre/pcre_get.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_globals.o
g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_info.o g:/bitbucket/openeuphoria/e
uphoria/mw32/pcre/pcre_maketables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre
_newline.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_ord2utf8.o g:/bitbucket/
openeuphoria/euphoria/mw32/pcre/pcreposix.o g:/bitbucket/openeuphoria/euphoria/mw32/p
cre/pcre_refcount.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_study.o g:/bitb
ucket/openeuphoria/euphoria/mw32/pcre/pcre_tables.o g:/bitbucket/openeuphoria/euphori
a/mw32/pcre/pcre_try_flipped.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_ucd.
o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_valid_utf8.o g:/bitbucket/openeup
horia/euphoria/mw32/pcre/pcre_version.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/
pcre_xclass.o -m32 -lm -o g:/bitbucket/openeuphoria/euphoria/mw32/euc.exe
make[3]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make g:/bitbucket/openeuphoria/euphoria/mw32/eu.a OBJDIR=libobj ERUNTIME=1 CONFIG=con
fig.gnu EDEBUG= EPROFILE=
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_decompress.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_decomp
ress.o
g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori
a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h"
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_machine.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_machine.o
be_machine.c: In function 'lock_file':
be_machine.c:1545:6: warning: variable 'fd' set but not used [-Wunused-but-set-variab
le]
be_machine.c: In function 'unlock_file':
be_machine.c:1603:19: warning: variable 'last' set but not used [-Wunused-but-set-var
iable]
be_machine.c:1603:12: warning: variable 'first' set but not used [-Wunused-but-set-va
riable]
be_machine.c:1601:6: warning: variable 'fd' set but not used [-Wunused-but-set-variab
le]
be_machine.c: In function 'internal_general_call_back':
be_machine.c:2588:9: warning: unused variable 'result' [-Wunused-variable]
be_machine.c: In function 'machine':
be_machine.c:1778:6: warning: 't' may be used uninitialized in this function [-Wmaybe
-uninitialized]
be_machine.c:1769:11: note: 't' was declared here
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_coverage.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_coverage
.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_w.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_w.o
be_w.c: In function 'show_console':
be_w.c:544:5: warning: pointer targets in passing argument 2 of 'GetConsoleMode' diff
er in signedness [-Wpointer-sign]
In file included from g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/windo
ws.h:49:0,
from be_w.c:40:
g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/wincon.h:146:13: note: expe
cted 'PDWORD' but argument is of type 'long int *'
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_alloc.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_alloc.o
be_alloc.c: In function 'new_dbl_block':
be_alloc.c:994:2: warning: passing argument 1 of 'ERealloc' from incompatible pointer
type [enabled by default]
be_alloc.c:722:7: note: expected 'char *' but argument is of type 'struct free_block
**'
be_alloc.c:994:16: warning: assignment from incompatible pointer type [enabled by def
ault]
gcc -finline-functions -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fs
igned-char -ffast-math -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMI
NGW -DERUNTIME be_inline.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_i
nline.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_pcre.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_pcre.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_socket.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_socket.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_syncolor.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_syncolor
.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_runtime.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_runtime.o
be_runtime.c: In function 'EGets':
be_runtime.c:3869:3: warning: passing argument 1 of 'EFree' from incompatible pointer
type [enabled by default]
In file included from be_runtime.c:60:0:
be_alloc.h:161:14: note: expected 'char *' but argument is of type 's1_ptr'
be_runtime.c: In function 'make_arg_cv':
be_runtime.c:4894:6: warning: unused variable 'bs' [-Wunused-variable]
be_runtime.c:4893:6: warning: unused variable 'ns' [-Wunused-variable]
be_runtime.c: In function 'system_exec_call':
be_runtime.c:5050:2: warning: passing argument 3 of 'spawnvp' from incompatible point
er type [enabled by default]
In file included from be_runtime.c:44:0:
g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/process.h:129:42: note: exp
ected 'const char * const*' but argument is of type 'char * const*'
be_runtime.c: In function 'Cleanup':
be_runtime.c:5633:6: warning: unused variable 'i' [-Wunused-variable]
be_runtime.c: In function 'winkbhit':
be_runtime.c:5825:6: warning: variable 'c' set but not used [-Wunused-but-set-variabl
e]
be_runtime.c: In function 'RTFatal_va':
be_runtime.c:605:1: warning: 'noreturn' function does return [enabled by default]
be_runtime.c: In function 'EPrintf':
be_runtime.c:4351:12: warning: 'gval' may be used uninitialized in this function [-Wm
aybe-uninitialized]
be_runtime.c:4245:11: note: 'gval' was declared here
be_runtime.c:4470:31: warning: 'v_last' may be used uninitialized in this function [-
Wmaybe-uninitialized]
be_runtime.c: In function 'find':
be_runtime.c:3214:8: warning: 'da' may be used uninitialized in this function [-Wmayb
e-uninitialized]
be_runtime.c: In function 'find_from':
be_runtime.c:5997:8: warning: 'da' may be used uninitialized in this function [-Wmayb
e-uninitialized]
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket
/openeuphoria/euphoria/mw32/libobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_task.c -og:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_task.o
gcc -c -Wall -DEWINDOWS -mwindows -DEMINGW -m32 -DARCH=ix86 -fsigned-char -O3 -fno-
omit-frame-pointer -ffast-math -fno-defer-pop be_callc.c -og:/bitbucket/openeuphoria
/euphoria/mw32/libobj/back/be_callc.o
be_callc.c: In function 'call_c':
be_callc.c:1149:12: warning: variable 'arg_len' set but not used [-Wunused-but-set-va
riable]
ar -rc g:/bitbucket/openeuphoria/euphoria/mw32/eu.a g:/bitbucket/openeuphoria/euphori
a/mw32/libobj/back/be_decompress.o g:/bitbucket/openeuphoria/euphoria/mw32/libobj/bac
k/be_machine.o g:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_coverage.o g:/b
itbucket/openeuphoria/euphoria/mw32/libobj/back/be_w.o g:/bitbucket/openeuphoria/euph
oria/mw32/libobj/back/be_alloc.o g:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/
be_inline.o g:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_pcre.o g:/bitbucke
t/openeuphoria/euphoria/mw32/libobj/back/be_socket.o g:/bitbucket/openeuphoria/euphor
ia/mw32/libobj/back/be_syncolor.o g:/bitbucket/openeuphoria/euphoria/mw32/libobj/back
/be_runtime.o g:/bitbucket/openeuphoria/euphoria/mw32/libobj/back/be_task.o g:/bitbuc
ket/openeuphoria/euphoria/mw32/libobj/back/be_callc.o g:/bitbucket/openeuphoria/eupho
ria/mw32/pcre/pcre_chartables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_com
pile.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_config.o g:/bitbucket/openeu
phoria/euphoria/mw32/pcre/pcre_dfa_exec.o g:/bitbucket/openeuphoria/euphoria/mw32/pcr
e/pcre_exec.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_fullinfo.o g:/bitbuck
et/openeuphoria/euphoria/mw32/pcre/pcre_get.o g:/bitbucket/openeuphoria/euphoria/mw32
/pcre/pcre_globals.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_info.o g:/bitb
ucket/openeuphoria/euphoria/mw32/pcre/pcre_maketables.o g:/bitbucket/openeuphoria/eup
horia/mw32/pcre/pcre_newline.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_ord2
utf8.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcreposix.o g:/bitbucket/openeuph
oria/euphoria/mw32/pcre/pcre_refcount.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/
pcre_study.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_tables.o g:/bitbucket/
openeuphoria/euphoria/mw32/pcre/pcre_try_flipped.o g:/bitbucket/openeuphoria/euphoria
/mw32/pcre/pcre_ucd.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_valid_utf8.o
g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_version.o g:/bitbucket/openeuphoria
/euphoria/mw32/pcre/pcre_xclass.o
/bin/echo
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make g:/bitbucket/openeuphoria/euphoria/mw32/eudbg.a OBJDIR=libobjdbg ERUNTIME=1 CONF
IG=config.gnu EDEBUG=1 EPROFILE=
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_decompress.c -o
g:/bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_decompress.o
g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori
a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h"
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_machine.c -og:/
bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_machine.o
be_machine.c: In function 'lock_file':
be_machine.c:1545:6: warning: variable 'fd' set but not used [-Wunused-but-set-variab
le]
be_machine.c: In function 'unlock_file':
be_machine.c:1603:19: warning: variable 'last' set but not used [-Wunused-but-set-var
iable]
be_machine.c:1603:12: warning: variable 'first' set but not used [-Wunused-but-set-va
riable]
be_machine.c:1601:6: warning: variable 'fd' set but not used [-Wunused-but-set-variab
le]
be_machine.c: In function 'internal_general_call_back':
be_machine.c:2588:9: warning: unused variable 'result' [-Wunused-variable]
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_coverage.c -og:
/bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_coverage.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_w.c -og:/bitbuc
ket/openeuphoria/euphoria/mw32/libobjdbg/back/be_w.o
be_w.c: In function 'show_console':
be_w.c:544:5: warning: pointer targets in passing argument 2 of 'GetConsoleMode' diff
er in signedness [-Wpointer-sign]
In file included from g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/windo
ws.h:49:0,
from be_w.c:40:
g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/wincon.h:146:13: note: expe
cted 'PDWORD' but argument is of type 'long int *'
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_alloc.c -og:/bi
tbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_alloc.o
be_alloc.c: In function 'new_dbl_block':
be_alloc.c:994:2: warning: passing argument 1 of 'ERealloc' from incompatible pointer
type [enabled by default]
be_alloc.c:722:7: note: expected 'char *' but argument is of type 'struct free_block
**'
be_alloc.c:994:16: warning: assignment from incompatible pointer type [enabled by def
ault]
gcc -finline-functions -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fs
igned-char -ffast-math -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -DERUNTIME be_inline.c
-og:/bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_inline.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_pcre.c -og:/bit
bucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_pcre.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_socket.c -og:/b
itbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_socket.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_syncolor.c -og:
/bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_syncolor.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_runtime.c -og:/
bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_runtime.o
be_runtime.c: In function 'EGets':
be_runtime.c:3869:3: warning: passing argument 1 of 'EFree' from incompatible pointer
type [enabled by default]
In file included from be_runtime.c:60:0:
be_alloc.h:161:14: note: expected 'char *' but argument is of type 's1_ptr'
be_runtime.c: In function 'make_arg_cv':
be_runtime.c:4894:6: warning: unused variable 'bs' [-Wunused-variable]
be_runtime.c:4893:6: warning: unused variable 'ns' [-Wunused-variable]
be_runtime.c: In function 'system_exec_call':
be_runtime.c:5050:2: warning: passing argument 3 of 'spawnvp' from incompatible point
er type [enabled by default]
In file included from be_runtime.c:44:0:
g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/process.h:129:42: note: exp
ected 'const char * const*' but argument is of type 'char * const*'
be_runtime.c: In function 'Cleanup':
be_runtime.c:5633:6: warning: unused variable 'i' [-Wunused-variable]
be_runtime.c: In function 'winkbhit':
be_runtime.c:5825:6: warning: variable 'c' set but not used [-Wunused-but-set-variabl
e]
be_runtime.c: In function 'RTFatal_va':
be_runtime.c:605:1: warning: 'noreturn' function does return [enabled by default]
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -DERUNTIME -mwindows -fsigned-char -ffast-m
ath -g3 -O0 -Wall -DARCH=ix86 -DEMINGW -I g:/bitbucket/openeuphoria/euphoria/mw32
/libobjdbg/back -I g:/bitbucket/openeuphoria/euphoria/mw32/include be_task.c -og:/bit
bucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_task.o
gcc -c -Wall -DEWINDOWS -mwindows -DEMINGW -m32 -DARCH=ix86 -fsigned-char -O3 -fno-
omit-frame-pointer -ffast-math -fno-defer-pop -g3 be_callc.c -og:/bitbucket/openeupho
ria/euphoria/mw32/libobjdbg/back/be_callc.o
be_callc.c: In function 'call_c':
be_callc.c:1149:12: warning: variable 'arg_len' set but not used [-Wunused-but-set-va
riable]
ar -rc g:/bitbucket/openeuphoria/euphoria/mw32/eudbg.a g:/bitbucket/openeuphoria/euph
oria/mw32/libobjdbg/back/be_decompress.o g:/bitbucket/openeuphoria/euphoria/mw32/libo
bjdbg/back/be_machine.o g:/bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_cov
erage.o g:/bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_w.o g:/bitbucket/op
eneuphoria/euphoria/mw32/libobjdbg/back/be_alloc.o g:/bitbucket/openeuphoria/euphoria
/mw32/libobjdbg/back/be_inline.o g:/bitbucket/openeuphoria/euphoria/mw32/libobjdbg/ba
ck/be_pcre.o g:/bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_socket.o g:/bi
tbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_syncolor.o g:/bitbucket/openeuph
oria/euphoria/mw32/libobjdbg/back/be_runtime.o g:/bitbucket/openeuphoria/euphoria/mw3
2/libobjdbg/back/be_task.o g:/bitbucket/openeuphoria/euphoria/mw32/libobjdbg/back/be_
callc.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_chartables.o g:/bitbucket/o
peneuphoria/euphoria/mw32/pcre/pcre_compile.o g:/bitbucket/openeuphoria/euphoria/mw32
/pcre/pcre_config.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_dfa_exec.o g:/b
itbucket/openeuphoria/euphoria/mw32/pcre/pcre_exec.o g:/bitbucket/openeuphoria/euphor
ia/mw32/pcre/pcre_fullinfo.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_get.o
g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_globals.o g:/bitbucket/openeuphoria
/euphoria/mw32/pcre/pcre_info.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_mak
etables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_newline.o g:/bitbucket/op
eneuphoria/euphoria/mw32/pcre/pcre_ord2utf8.o g:/bitbucket/openeuphoria/euphoria/mw32
/pcre/pcreposix.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_refcount.o g:/bit
bucket/openeuphoria/euphoria/mw32/pcre/pcre_study.o g:/bitbucket/openeuphoria/euphori
a/mw32/pcre/pcre_tables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_try_flipp
ed.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_ucd.o g:/bitbucket/openeuphori
a/euphoria/mw32/pcre/pcre_valid_utf8.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/p
cre_version.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_xclass.o
/bin/echo
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make backend EBACKEND=1 OBJDIR=backobj CONFIG=config.gnu EDEBUG= EPROFILE=
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_decompress.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_decom
press.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_debug.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_debug.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_execute.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_execute.
o
be_execute.c: In function 'trace_command':
be_execute.c:275:6: warning: variable 'i' set but not used [-Wunused-but-set-variable
]
be_execute.c: In function 'do_exec':
be_execute.c:5401:4: warning: 'top' may be used uninitialized in this function [-Wmay
be-uninitialized]
be_execute.c:2924:6: warning: 'obj_ptr' may be used uninitialized in this function [-
Wmaybe-uninitialized]
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_task.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_task.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_main.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_main.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_alloc.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_alloc.o
be_alloc.c: In function 'new_dbl_block':
be_alloc.c:994:2: warning: passing argument 1 of 'ERealloc' from incompatible pointer
type [enabled by default]
be_alloc.c:722:7: note: expected 'char *' but argument is of type 'struct free_block
**'
be_alloc.c:994:16: warning: assignment from incompatible pointer type [enabled by def
ault]
gcc -c -Wall -DEWINDOWS -mwindows -DEMINGW -m32 -DARCH=ix86 -fsigned-char -O3 -fno-
omit-frame-pointer -ffast-math -fno-defer-pop be_callc.c -og:/bitbucket/openeuphoria
/euphoria/mw32/backobj/back/be_callc.o
be_callc.c: In function 'call_c':
be_callc.c:1149:12: warning: variable 'arg_len' set but not used [-Wunused-but-set-va
riable]
gcc -finline-functions -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsi
gned-char -ffast-math -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMIN
GW be_inline.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_inline.o
g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori
a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h"
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_machine.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_machine.
o
be_machine.c: In function 'lock_file':
be_machine.c:1545:6: warning: variable 'fd' set but not used [-Wunused-but-set-variab
le]
be_machine.c: In function 'unlock_file':
be_machine.c:1603:19: warning: variable 'last' set but not used [-Wunused-but-set-var
iable]
be_machine.c:1603:12: warning: variable 'first' set but not used [-Wunused-but-set-va
riable]
be_machine.c:1601:6: warning: variable 'fd' set but not used [-Wunused-but-set-variab
le]
be_machine.c: In function 'internal_general_call_back':
be_machine.c:2588:9: warning: unused variable 'result' [-Wunused-variable]
be_machine.c: In function 'machine':
be_machine.c:1778:6: warning: 't' may be used uninitialized in this function [-Wmaybe
-uninitialized]
be_machine.c:1769:11: note: 't' was declared here
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_coverage.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_coverag
e.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_pcre.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_pcre.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_rterror.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_rterror.
o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_syncolor.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_syncolo
r.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_runtime.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_runtime.
o
be_runtime.c: In function 'EGets':
be_runtime.c:3869:3: warning: passing argument 1 of 'EFree' from incompatible pointer
type [enabled by default]
In file included from be_runtime.c:60:0:
be_alloc.h:161:14: note: expected 'char *' but argument is of type 's1_ptr'
be_runtime.c: In function 'make_arg_cv':
be_runtime.c:4894:6: warning: unused variable 'bs' [-Wunused-variable]
be_runtime.c:4893:6: warning: unused variable 'ns' [-Wunused-variable]
be_runtime.c: In function 'system_exec_call':
be_runtime.c:5050:2: warning: passing argument 3 of 'spawnvp' from incompatible point
er type [enabled by default]
In file included from be_runtime.c:44:0:
g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/process.h:129:42: note: exp
ected 'const char * const*' but argument is of type 'char * const*'
be_runtime.c: In function 'winkbhit':
be_runtime.c:5825:6: warning: variable 'c' set but not used [-Wunused-but-set-variabl
e]
be_runtime.c: In function 'RTFatal_va':
be_runtime.c:605:1: warning: 'noreturn' function does return [enabled by default]
be_runtime.c: In function 'EPrintf':
be_runtime.c:4351:12: warning: 'gval' may be used uninitialized in this function [-Wm
aybe-uninitialized]
be_runtime.c:4245:11: note: 'gval' was declared here
be_runtime.c:4470:31: warning: 'v_last' may be used uninitialized in this function [-
Wmaybe-uninitialized]
be_runtime.c: In function 'find':
be_runtime.c:3214:8: warning: 'da' may be used uninitialized in this function [-Wmayb
e-uninitialized]
be_runtime.c: In function 'find_from':
be_runtime.c:5997:8: warning: 'da' may be used uninitialized in this function [-Wmayb
e-uninitialized]
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_symtab.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_symtab.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_socket.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_socket.o
gcc -m32 -c -Wall -DEWINDOWS -DEMINGW -mwindows -DBACKEND -fsigned-char -ffast-ma
th -fomit-frame-pointer -ffast-math -O3 -Os -DARCH=ix86 -DEMINGW -I g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back -I g:/bitbucket/openeuphoria/euphoria/mw32/in
clude be_w.c -og:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_w.o
be_w.c: In function 'show_console':
be_w.c:544:5: warning: pointer targets in passing argument 2 of 'GetConsoleMode' diff
er in signedness [-Wpointer-sign]
In file included from g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/windo
ws.h:49:0,
from be_w.c:40:
g:\mingw\bin\../lib/gcc/mingw32/4.7.0/../../../../include/wincon.h:146:13: note: expe
cted 'PDWORD' but argument is of type 'long int *'
make g:/bitbucket/openeuphoria/euphoria/mw32/eub.exe OBJDIR=backobj EBSD= CONFIG=conf
ig.gnu EDEBUG= EPROFILE=
make[3]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori
a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h"
making eub.exe backobj
gcc -mwindows g:/bitbucket/openeuphoria/euphoria/mw32/eubw.res g:/bitbucket/openeuph
oria/euphoria/mw32/backobj/0ackend.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/
0rror.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/0yncolor.o g:/bitbucket/opene
uphoria/euphoria/mw32/backobj/backend.o g:/bitbucket/openeuphoria/euphoria/mw32/backo
bj/block.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/buildsys.o g:/bitbucket/op
eneuphoria/euphoria/mw32/backobj/c_decl.o g:/bitbucket/openeuphoria/euphoria/mw32/bac
kobj/c_out.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/cmdline.o g:/bitbucket/o
peneuphoria/euphoria/mw32/backobj/cominit.o g:/bitbucket/openeuphoria/euphoria/mw32/b
ackobj/common.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/compile.o g:/bitbucke
t/openeuphoria/euphoria/mw32/backobj/compress.o g:/bitbucket/openeuphoria/euphoria/mw
32/backobj/console.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/convert.o g:/bit
bucket/openeuphoria/euphoria/mw32/backobj/coverage.o g:/bitbucket/openeuphoria/euphor
ia/mw32/backobj/datetime.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/dll.o g:/b
itbucket/openeuphoria/euphoria/mw32/backobj/eds.o g:/bitbucket/openeuphoria/euphoria/
mw32/backobj/emit.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/error.o g:/bitbuc
ket/openeuphoria/euphoria/mw32/backobj/eumem.o g:/bitbucket/openeuphoria/euphoria/mw3
2/backobj/filesys.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/fwdref.o g:/bitbu
cket/openeuphoria/euphoria/mw32/backobj/get.o g:/bitbucket/openeuphoria/euphoria/mw32
/backobj/global.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/info.o g:/bitbucket
/openeuphoria/euphoria/mw32/backobj/init-.o g:/bitbucket/openeuphoria/euphoria/mw32/b
ackobj/init-0.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/inline.o g:/bitbucket
/openeuphoria/euphoria/mw32/backobj/intinit.o g:/bitbucket/openeuphoria/euphoria/mw32
/backobj/io.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/keylist.o g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/locale.o g:/bitbucket/openeuphoria/euphoria/mw32/b
ackobj/machine.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/main-.o g:/bitbucket
/openeuphoria/euphoria/mw32/backobj/map.o g:/bitbucket/openeuphoria/euphoria/mw32/bac
kobj/math.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/memory.o g:/bitbucket/ope
neuphoria/euphoria/mw32/backobj/mode.o g:/bitbucket/openeuphoria/euphoria/mw32/backob
j/msgtext.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/parser.o g:/bitbucket/ope
neuphoria/euphoria/mw32/backobj/pathopen.o g:/bitbucket/openeuphoria/euphoria/mw32/ba
ckobj/platform.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/preproc.o g:/bitbuck
et/openeuphoria/euphoria/mw32/backobj/pretty.o g:/bitbucket/openeuphoria/euphoria/mw3
2/backobj/primes.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/regex.o g:/bitbuck
et/openeuphoria/euphoria/mw32/backobj/scanner.o g:/bitbucket/openeuphoria/euphoria/mw
32/backobj/scinot.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/search.o g:/bitbu
cket/openeuphoria/euphoria/mw32/backobj/sequence.o g:/bitbucket/openeuphoria/euphoria
/mw32/backobj/shift.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/sort.o g:/bitbu
cket/openeuphoria/euphoria/mw32/backobj/symstruct.o g:/bitbucket/openeuphoria/euphori
a/mw32/backobj/symtab.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/syncolor.o g:
/bitbucket/openeuphoria/euphoria/mw32/backobj/text.o g:/bitbucket/openeuphoria/euphor
ia/mw32/backobj/tokenize.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/types.o g:
/bitbucket/openeuphoria/euphoria/mw32/backobj/utils.o g:/bitbucket/openeuphoria/eupho
ria/mw32/backobj/back/be_decompress.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj
/back/be_debug.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_execute.o g:
/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_task.o g:/bitbucket/openeuphori
a/euphoria/mw32/backobj/back/be_main.o g:/bitbucket/openeuphoria/euphoria/mw32/backob
j/back/be_alloc.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_callc.o g:/
bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_inline.o g:/bitbucket/openeuphor
ia/euphoria/mw32/backobj/back/be_machine.o g:/bitbucket/openeuphoria/euphoria/mw32/ba
ckobj/back/be_coverage.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_pcre
.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_rterror.o g:/bitbucket/ope
neuphoria/euphoria/mw32/backobj/back/be_syncolor.o g:/bitbucket/openeuphoria/euphoria
/mw32/backobj/back/be_runtime.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/
be_symtab.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_socket.o g:/bitbu
cket/openeuphoria/euphoria/mw32/backobj/back/be_w.o g:/bitbucket/openeuphoria/euphori
a/mw32/pcre/pcre_chartables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_compi
le.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_config.o g:/bitbucket/openeuph
oria/euphoria/mw32/pcre/pcre_dfa_exec.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/
pcre_exec.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_fullinfo.o g:/bitbucket
/openeuphoria/euphoria/mw32/pcre/pcre_get.o g:/bitbucket/openeuphoria/euphoria/mw32/p
cre/pcre_globals.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_info.o g:/bitbuc
ket/openeuphoria/euphoria/mw32/pcre/pcre_maketables.o g:/bitbucket/openeuphoria/eupho
ria/mw32/pcre/pcre_newline.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_ord2ut
f8.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcreposix.o g:/bitbucket/openeuphor
ia/euphoria/mw32/pcre/pcre_refcount.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pc
re_study.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_tables.o g:/bitbucket/op
eneuphoria/euphoria/mw32/pcre/pcre_try_flipped.o g:/bitbucket/openeuphoria/euphoria/m
w32/pcre/pcre_ucd.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_valid_utf8.o g:
/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_version.o g:/bitbucket/openeuphoria/e
uphoria/mw32/pcre/pcre_xclass.o -lm -fomit-frame-pointer -ffast-math -O3 -Os -m32
-o g:/bitbucket/openeuphoria/euphoria/mw32/eub.exe
gcc g:/bitbucket/openeuphoria/euphoria/mw32/eub.res g:/bitbucket/openeuphoria/euphor
ia/mw32/backobj/0ackend.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/0rror.o g:/
bitbucket/openeuphoria/euphoria/mw32/backobj/0yncolor.o g:/bitbucket/openeuphoria/eup
horia/mw32/backobj/backend.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/block.o
g:/bitbucket/openeuphoria/euphoria/mw32/backobj/buildsys.o g:/bitbucket/openeuphoria/
euphoria/mw32/backobj/c_decl.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/c_out.
o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/cmdline.o g:/bitbucket/openeuphoria
/euphoria/mw32/backobj/cominit.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/comm
on.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/compile.o g:/bitbucket/openeupho
ria/euphoria/mw32/backobj/compress.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/
console.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/convert.o g:/bitbucket/open
euphoria/euphoria/mw32/backobj/coverage.o g:/bitbucket/openeuphoria/euphoria/mw32/bac
kobj/datetime.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/dll.o g:/bitbucket/op
eneuphoria/euphoria/mw32/backobj/eds.o g:/bitbucket/openeuphoria/euphoria/mw32/backob
j/emit.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/error.o g:/bitbucket/openeup
horia/euphoria/mw32/backobj/eumem.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/f
ilesys.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/fwdref.o g:/bitbucket/openeu
phoria/euphoria/mw32/backobj/get.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/gl
obal.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/info.o g:/bitbucket/openeuphor
ia/euphoria/mw32/backobj/init-.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/init
-0.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/inline.o g:/bitbucket/openeuphor
ia/euphoria/mw32/backobj/intinit.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/io
.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/keylist.o g:/bitbucket/openeuphori
a/euphoria/mw32/backobj/locale.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/mach
ine.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/main-.o g:/bitbucket/openeuphor
ia/euphoria/mw32/backobj/map.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/math.o
g:/bitbucket/openeuphoria/euphoria/mw32/backobj/memory.o g:/bitbucket/openeuphoria/e
uphoria/mw32/backobj/mode.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/msgtext.o
g:/bitbucket/openeuphoria/euphoria/mw32/backobj/parser.o g:/bitbucket/openeuphoria/e
uphoria/mw32/backobj/pathopen.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/platf
orm.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/preproc.o g:/bitbucket/openeuph
oria/euphoria/mw32/backobj/pretty.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/p
rimes.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/regex.o g:/bitbucket/openeuph
oria/euphoria/mw32/backobj/scanner.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/
scinot.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/search.o g:/bitbucket/openeu
phoria/euphoria/mw32/backobj/sequence.o g:/bitbucket/openeuphoria/euphoria/mw32/backo
bj/shift.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/sort.o g:/bitbucket/openeu
phoria/euphoria/mw32/backobj/symstruct.o g:/bitbucket/openeuphoria/euphoria/mw32/back
obj/symtab.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/syncolor.o g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/text.o g:/bitbucket/openeuphoria/euphoria/mw32/bac
kobj/tokenize.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/types.o g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/utils.o g:/bitbucket/openeuphoria/euphoria/mw32/ba
ckobj/back/be_decompress.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_de
bug.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_execute.o g:/bitbucket/
openeuphoria/euphoria/mw32/backobj/back/be_task.o g:/bitbucket/openeuphoria/euphoria/
mw32/backobj/back/be_main.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_a
lloc.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_callc.o g:/bitbucket/o
peneuphoria/euphoria/mw32/backobj/back/be_inline.o g:/bitbucket/openeuphoria/euphoria
/mw32/backobj/back/be_machine.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/
be_coverage.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_pcre.o g:/bitbu
cket/openeuphoria/euphoria/mw32/backobj/back/be_rterror.o g:/bitbucket/openeuphoria/e
uphoria/mw32/backobj/back/be_syncolor.o g:/bitbucket/openeuphoria/euphoria/mw32/backo
bj/back/be_runtime.o g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_symtab.o
g:/bitbucket/openeuphoria/euphoria/mw32/backobj/back/be_socket.o g:/bitbucket/openeu
phoria/euphoria/mw32/backobj/back/be_w.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre
/pcre_chartables.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_compile.o g:/bit
bucket/openeuphoria/euphoria/mw32/pcre/pcre_config.o g:/bitbucket/openeuphoria/euphor
ia/mw32/pcre/pcre_dfa_exec.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_exec.o
g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_fullinfo.o g:/bitbucket/openeuphor
ia/euphoria/mw32/pcre/pcre_get.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_gl
obals.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_info.o g:/bitbucket/openeup
horia/euphoria/mw32/pcre/pcre_maketables.o g:/bitbucket/openeuphoria/euphoria/mw32/pc
re/pcre_newline.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_ord2utf8.o g:/bit
bucket/openeuphoria/euphoria/mw32/pcre/pcreposix.o g:/bitbucket/openeuphoria/euphoria
/mw32/pcre/pcre_refcount.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_study.o
g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_tables.o g:/bitbucket/openeuphoria/
euphoria/mw32/pcre/pcre_try_flipped.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pc
re_ucd.o g:/bitbucket/openeuphoria/euphoria/mw32/pcre/pcre_valid_utf8.o g:/bitbucket/
openeuphoria/euphoria/mw32/pcre/pcre_version.o g:/bitbucket/openeuphoria/euphoria/mw3
2/pcre/pcre_xclass.o -lm -o g:/bitbucket/openeuphoria/euphoria/mw32/eub.exe
make[3]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make g:/bitbucket/openeuphoria/euphoria/mw32/euso.a OBJDIR=libobj-fPIC ERUNTIME=1 CON
FIG=config.gnu EDEBUG= EPROFILE= FPIC=-fPIC
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
ln -f g:/bitbucket/openeuphoria/euphoria/mw32/eu.a g:/bitbucket/openeuphoria/euphori
a/mw32/euso.a
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make g:/bitbucket/openeuphoria/euphoria/mw32/eusodbg.a OBJDIR=libobjdbg-fPIC ERUNTIME
=1 CONFIG=config.gnu EDEBUG=1 EPROFILE= FPIC=-fPIC
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
ln -f g:/bitbucket/openeuphoria/euphoria/mw32/eudbg.a g:/bitbucket/openeuphoria/euph
oria/mw32/eusodbg.a
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
touch test818.c
make ../tests/lib818.dll
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
gcc -c -fPIC -I ../include -m32 -c -fsigned-char -DEWINDOWS -ffast-math -O3 -Os -ff
ast-math -mwindows -fomit-frame-pointer -ffast-math -O3 -Os -Ig:/bitbucket/openeupho
ria/euphoria/source -Ig:/bitbucket/openeuphoria/euphoria -DARCH=ix86 -Wall -shared
../source/test818.c -o g:/bitbucket/openeuphoria/euphoria/mw32/test818.o
../source/test818.c:1:0: warning: -fPIC ignored for target (all code is position inde
pendent) [enabled by default]
gcc -m32 -fPIC -shared -o ../tests/lib818.dll -Wl,--out-implib,lib818dll.a g:/bitbu
cket/openeuphoria/euphoria/mw32/test818.o
Creating library file: lib818dll.a
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make[1]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make tools
make[1]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
make translator OBJDIR=transobj EBSD= CONFIG=config.gnu EDEBUG= EPROFILE=
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori
a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h"
make g:/bitbucket/openeuphoria/euphoria/mw32/euc.exe OBJDIR=transobj EBSD= CONFIG=con
fig.gnu EDEBUG= EPROFILE=
make[3]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori
a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h"
make[3]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make g:/bitbucket/openeuphoria/euphoria/mw32/eu.a OBJDIR=libobj ERUNTIME=1 CONFIG=con
fig.gnu EDEBUG= EPROFILE=
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source'
g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori
a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h"
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make -C "g:/bitbucket/openeuphoria/euphoria/mw32/eudist-build" -f eudist.mak
make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/mw32/eudist-build'
make[2]: eudist.mak: No such file or directory
make[2]: *** No rule to make target `eudist.mak'. Stop.
make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/mw32/eudist-build'
make[1]: *** [g:/bitbucket/openeuphoria/euphoria/mw32/eudist] Error 2
make[1]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source'
make: *** [all] Error 2
16. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 06, 2013
- 1538 views
This command do not show any output on either msys or cmd. /g/bitbucket/openeuphoria/euphoria/mw32/eui -v
From your build output, eui.exe appears to be generated ok. There's no apparent reason why it would fail silently.
There is a problem with eui displaying text on cygwin windows (like cygwin's native rxvt), but a standard issue command prompt window should have worked.
You could attempt to redirect the output and the standard error into files and see if anything is outputed there, but I doubt that you would see anything other than empty text files.
17. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 06, 2013
- 1532 views
This is odd. You say that mw32/eudist-build/ does not exist/is not created, yet make appears to cd into it correctly. (If the directory didn't exist, then make should have errored out, explicitly stating that reason.)
Also, you have EUPHORIA=1 in your config.gnu, but there's no attempt to call eui to generate mw32/eudist-build/main-.c ... either EUPHORIA is getting unset or set to 0, or else main-.c already exists.
2/pcre/pcre_xclass.o -lm -o g:/bitbucket/openeuphoria/euphoria/mw32/eub.exe make[3]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' make g:/bitbucket/openeuphoria/euphoria/mw32/euso.a OBJDIR=libobj-fPIC ERUNTIME=1 CON FIG=config.gnu EDEBUG= EPROFILE= FPIC=-fPIC make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source' ln -f g:/bitbucket/openeuphoria/euphoria/mw32/eu.a g:/bitbucket/openeuphoria/euphori a/mw32/euso.a make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' make g:/bitbucket/openeuphoria/euphoria/mw32/eusodbg.a OBJDIR=libobjdbg-fPIC ERUNTIME =1 CONFIG=config.gnu EDEBUG=1 EPROFILE= FPIC=-fPIC make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source' ln -f g:/bitbucket/openeuphoria/euphoria/mw32/eudbg.a g:/bitbucket/openeuphoria/euph oria/mw32/eusodbg.a make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' touch test818.c make ../tests/lib818.dll make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source' gcc -c -fPIC -I ../include -m32 -c -fsigned-char -DEWINDOWS -ffast-math -O3 -Os -ff ast-math -mwindows -fomit-frame-pointer -ffast-math -O3 -Os -Ig:/bitbucket/openeupho ria/euphoria/source -Ig:/bitbucket/openeuphoria/euphoria -DARCH=ix86 -Wall -shared ../source/test818.c -o g:/bitbucket/openeuphoria/euphoria/mw32/test818.o ../source/test818.c:1:0: warning: -fPIC ignored for target (all code is position inde pendent) [enabled by default] gcc -m32 -fPIC -shared -o ../tests/lib818.dll -Wl,--out-implib,lib818dll.a g:/bitbu cket/openeuphoria/euphoria/mw32/test818.o Creating library file: lib818dll.a make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' make[1]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' make tools make[1]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source' make translator OBJDIR=transobj EBSD= CONFIG=config.gnu EDEBUG= EPROFILE= make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source' g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h" make g:/bitbucket/openeuphoria/euphoria/mw32/euc.exe OBJDIR=transobj EBSD= CONFIG=con fig.gnu EDEBUG= EPROFILE= make[3]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source' g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h" make[3]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' make g:/bitbucket/openeuphoria/euphoria/mw32/eu.a OBJDIR=libobj ERUNTIME=1 CONFIG=con fig.gnu EDEBUG= EPROFILE= make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/source' g:/bitbucket/openeuphoria/euphoria/mw32/mkver "hg" "g:/bitbucket/openeuphoria/euphori a/mw32/ver.cache" "g:/bitbucket/openeuphoria/euphoria/mw32/include/be_ver.h" make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' make -C "g:/bitbucket/openeuphoria/euphoria/mw32/eudist-build" -f eudist.mak make[2]: Entering directory `/g/bitbucket/openeuphoria/euphoria/mw32/eudist-build' make[2]: eudist.mak: No such file or directory make[2]: *** No rule to make target `eudist.mak'. Stop. make[2]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/mw32/eudist-build' make[1]: *** [g:/bitbucket/openeuphoria/euphoria/mw32/eudist] Error 2 make[1]: Leaving directory `/g/bitbucket/openeuphoria/euphoria/source' make: *** [all] Error 2
18. Re: eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1506 views
This is odd. You say that mw32/eudist-build/ does not exist/is not created, yet make appears to cd into it correctly. (If the directory didn't exist, then make should have errored out, explicitly stating that reason.)
Also, you have EUPHORIA=1 in your config.gnu, but there's no attempt to call eui to generate mw32/eudist-build/main-.c ... either EUPHORIA is getting unset or set to 0, or else main-.c already exists.
Yes correct i have created them, because i was getting errors trying to compile euphoria. I don't remember when it last worked without errors. But anyway thank to you and matt for looking into this I will abandon any further atempt trying to build eu. When should we expect the next release?
19. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 06, 2013
- 1492 views
This is odd. You say that mw32/eudist-build/ does not exist/is not created, yet make appears to cd into it correctly. (If the directory didn't exist, then make should have errored out, explicitly stating that reason.)
Also, you have EUPHORIA=1 in your config.gnu, but there's no attempt to call eui to generate mw32/eudist-build/main-.c ... either EUPHORIA is getting unset or set to 0, or else main-.c already exists.
Yes correct i have created them, because i was getting errors trying to compile euphoria.
Ok. Now the errors make sense. (For future reference, stating that you did this in the begining would have helped a lot.) To debug the real issue, we'd need to remove the fake make-.c and eudist-build, and retry the build.
However, the failure to build eudist is probably caused by the issue with eui.exe - the newly built eui.exe is used to build the tools (starting with eudist).
So, what probably happens: make tried to call the new eui to build eudist, eui didn't do anything, and make errored out because eui failed to create make-.c and eudist.mak
It remains unclear why eui.exe is failing. (I wonder if it is just eui, or if euiw and euc and eub and eubw also have issues.) But it might be necessary to use a 4.1 binary to build 4.1 (I don't know the last time anyone has successfully built 4.1 witha 4.0 binary).
I don't remember when it last worked without errors.
But anyway thank to you and matt for looking into this
I will abandon any further atempt trying to build eu.
When should we expect the next release?
Currently, there are no release dates for 4.0.6 or 4.1.0
4.1.0 has been held up indefinitely (I think at least roughly half a year).
At this point in time, I feel very pessimistic - in the entire time that 4.1.0 has been held up, no visible progress has been made in getting the issues responsible fixed. A holdup of 2 or 3 more years feels realistic to me.
4.0.6 will probably come along in a few months (or at most a year) - whenever someone feels that we've released enough bug fixes to 4.0.5 to warrant a new release.
20. Re: eudist.mak: No such file or directory
- Posted by ne1uno Jan 06, 2013
- 1500 views
(I don't know the last time anyone has successfully built 4.1 witha 4.0 binary).
yes you can still build 4.1 with 4.0, though I haven't rebuilt the 4.0 eui itself in a while.
21. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 06, 2013
- 1504 views
(I don't know the last time anyone has successfully built 4.1 witha 4.0 binary).
yes you can still build 4.1 with 4.0,
That's good to know. That was simply the only thing I could of that might have explained why the OP's eui.exe was failing.
though I haven't rebuilt the 4.0 eui itself in a while.
It shouldn't have changed very much, so I doubt that matters. Are you using 4.0 built with watcom or with mingw?
22. Re: eudist.mak: No such file or directory
- Posted by Thomas Jan 06, 2013
- 1500 views
(I don't know the last time anyone has successfully built 4.1 witha 4.0 binary).
yes you can still build 4.1 with 4.0, though I haven't rebuilt the 4.0 eui itself in a while.
The last working eu 4.1 build with 4.1 mingw msys Euphoria Interpreter v4.1.0 development 32-bit Windows, Using Managed Memory Revision Date: 2012-10-01 13:31:50, Id: 5713:539c9564878e Watcom does not compile at my end any more.
23. Re: eudist.mak: No such file or directory
- Posted by ne1uno Jan 07, 2013
- 1513 views
though I haven't rebuilt the 4.0 eui itself in a while.
It shouldn't have changed very much, so I doubt that matters. Are you using 4.0 built with watcom or with mingw?
all minGW,
looks like there is some kind of regression in the past few weeks. after I posted, I updated to default and make built everything. I always intend to try first and post after but but it didn't happen this time.
I forgot to update from openeuphoria first so the repo was a few days or weeks stale. so now I'm getting a different error at eudist with the current default.
eudist-build/main-.c Error 5there is no eudist-build so the makefile must be skipping something?
everything seems to have built ok up to that point, right after lib818 before tools. maybe a problem in the makefile after recent edits?
24. Re: eudist.mak: No such file or directory
- Posted by mattlewis (admin) Jan 07, 2013
- 1474 views
so now I'm getting a different error at eudist with the current default.
eudist-build/main-.c Error 5there is no eudist-build so the makefile must be skipping something?
everything seems to have built ok up to that point, right after lib818 before tools. maybe a problem in the makefile after recent edits?
I was able to build a native Linux build, but not cross compile for Windows. I updated the way that the tools are translated, and now cross compilation works for me. I just pushed that change up.
Matt
25. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 07, 2013
- 1463 views
though I haven't rebuilt the 4.0 eui itself in a while.
It shouldn't have changed very much, so I doubt that matters. Are you using 4.0 built with watcom or with mingw?
all minGW,
looks like there is some kind of regression in the past few weeks. after I posted, I updated to default and make built everything. I always intend to try first and post after but but it didn't happen this time.
I forgot to update from openeuphoria first so the repo was a few days or weeks stale. so now I'm getting a different error at eudist with the current default.
eudist-build/main-.c Error 5there is no eudist-build so the makefile must be skipping something?
everything seems to have built ok up to that point, right after lib818 before tools. maybe a problem in the makefile after recent edits?
Hmm. I just tried to manually build an eubin last night on the eubin server, and the resulting eui.exe has the same issues that Thomas reported. No output on a command window. No output from -v.
Something is really hosed in trunk.
26. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 07, 2013
- 1456 views
though I haven't rebuilt the 4.0 eui itself in a while.
It shouldn't have changed very much, so I doubt that matters. Are you using 4.0 built with watcom or with mingw?
all minGW,
looks like there is some kind of regression in the past few weeks. after I posted, I updated to default and make built everything. I always intend to try first and post after but but it didn't happen this time.
I forgot to update from openeuphoria first so the repo was a few days or weeks stale. so now I'm getting a different error at eudist with the current default.
eudist-build/main-.c Error 5there is no eudist-build so the makefile must be skipping something?
everything seems to have built ok up to that point, right after lib818 before tools. maybe a problem in the makefile after recent edits?
Hmm. I just tried to manually build an eubin last night on the eubin server, and the resulting eui.exe has the same issues that Thomas reported. No output on a command window. No output from -v.
Something is really hosed in trunk.
It appears to be totally nonfunctional. Redirecting the output of -v produces an empty file, same for standard error. Running simple code to create a file does nothing (no file is ever created), so this is more than just an issue with the output.
27. Re: eudist.mak: No such file or directory
- Posted by mattlewis (admin) Jan 07, 2013
- 1451 views
It appears to be totally nonfunctional. Redirecting the output of -v produces an empty file, same for standard error. Running simple code to create a file does nothing (no file is ever created), so this is more than just an issue with the output.
When I run my newly built interpreter in Wine, I get:
Fatal run-time error: Internal error: ERealloc memcopy failed (-2).
Matt
28. Re: eudist.mak: No such file or directory
- Posted by jimcbrown (admin) Jan 07, 2013
- 1464 views
It appears to be totally nonfunctional. Redirecting the output of -v produces an empty file, same for standard error. Running simple code to create a file does nothing (no file is ever created), so this is more than just an issue with the output.
When I run my newly built interpreter in Wine, I get:
Fatal run-time error: Internal error: ERealloc memcopy failed (-2).
Matt
On native Windows, I see no ex.err file at all (in addition to no error message in the console)... weird. Have you tried your binary on your windoze vm?
29. Re: eudist.mak: No such file or directory
- Posted by mattlewis (admin) Jan 07, 2013
- 1552 views
On native Windows, I see no ex.err file at all (in addition to no error message in the console)... weird. Have you tried your binary on your windoze vm?
I get the same results. Obviously, something is failing too early for that stuff to kick in.
Matt
30. Re: eudist.mak: No such file or directory
- Posted by mattlewis (admin) Jan 07, 2013
- 1510 views
On native Windows, I see no ex.err file at all (in addition to no error message in the console)... weird. Have you tried your binary on your windoze vm?
I get the same results. Obviously, something is failing too early for that stuff to kick in.
It was a problem with the way we were allocating and tracking blocks of memory used to store doubles that only was a problem on Windows. Fixed in hg:euphoria/rev/e146b072d53e.
Matt

