This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Topics - flyingfisch
1
« on: June 19, 2014, 02:27:22 pm »
Does anyone play TripleA? I was thinking if we could get 5 or 6 players we could play a PBEM game through this thread. For those who have never heard of it: TripleA is a free online turn based strategy game and board game engine, similar to such board games as Axis & Allies or Risk. TripleA comes with multiple games and over 100 more games can be downloaded from the user community. Supports single player vs AI, hot-seat, Play by Email and Forum, and a hosted Online lobby for live play online.
Personally, I think it bears almost no resemblance to Risk, and is much closer to Axis & Allies, but whatever they say.
3
« on: December 28, 2013, 06:09:06 pm »
So, with 2014 coming up, we were wondering what you would like us to improve on most in the upcoming year. The options are: - More posts. Period. - More Tutorials - More Addin Reviews - More News Posts - All of above - Other You can submit your vote on the blog. Also, if you are willing to write tutorials for casio calculators and would like to make posts on the blog, please contact me. Thank you!
4
« on: October 28, 2013, 12:27:45 pm »
I have been thinking about doing this for a while, and I wanted to get some feedback before I invest a lot of time and effort into it.
I was thinking that it would be cool to have a web tool that would allow artists to upload sprites in png form with a name and possibly tags, and then the server-side software would convert it to SourceCode-style sprites, and upload it to the server. Programmers could then search the site for sprites that they need, and have the sprite data ready to copy and paste into their programs.
What do you think?
5
« on: July 28, 2013, 12:06:24 pm »
So I'm back after two months of not having access to the internet. To make a long story short, first our modem broke, and then I have just been really busy or out of town since then, with funerals, etc. Sorry if anyone tried to contact me and didn't get a reply. Also, thanks to everyone who let me know casio.clrhome.org was down, and thanks to Deep Thought for fixing that while I was offline. I am still filtering through PM's and emails, I'll try to reply to everyone as soon as possible.
6
« on: April 01, 2013, 05:37:56 pm »
Hi there everybody. Today I'm going to introduce a new IDE and programming language for ClassPad.
Actually, it is an IDE with a designer which lets you design your user interface, then you can program it in an easy Basic-Like language and then it compiles both the ClassPad add-in and a Windows test executable of that addin (it needs the ClassPad SDK pre-installed for this). Here are some screenshots:
Designer Environment:
Code Editor:
http://community.casiocalc.org/topic/7122-program-in-a-visual-basic-ide-for-classpad/page__gopid__58344
7
« on: March 19, 2013, 03:09:49 pm »
Casimo, a new member of the TakeFlight programming team has released his first major calc project. The rest of this post is only a slightly modified version of his blog post. Matris is a Tetris-clone. It is PowerGraphic2-compatible. Download!Features:-two shades of gray (flickers a bit) -multiplayermode -SH4 / PowerGraphic2 compatible -use hold to store a brick -boss mode -pause button -level and point counter -open source How to playPress the arrow keys to move the brick (up: rotate, down: fast). Try to complete lines to get points. After 10 lines you reach the next level; the speed increases (highest level: 20). Press F5 to pause the game. With F6 you enabl the boss mode: You jump to the RunMat instantly (highscore is not saved!). You can use [tan] to store a brick or swap it with an existing one. If you want to leave the game, press [exit]. Screenshots! This game was made by Casimo. It is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License: http://creativecommons.org/licenses/by-nc-sa/3.0/Thanks to SimonLothar for the systemcalls!
8
« on: March 06, 2013, 12:59:46 pm »
What it is Back2BASIC is a library that allows you to have all the functions you loved in BASIC. This will help BASIC programmers switch to lua, as well as making it more straightforward to port BASIC programs to lua.
Already implemented - b2b.menu (a prefabricated menu function) - b2b.printText (like "HELLO" in BASIC, but with LESS-style page breaks)
To be implemented - a graphing function - Locate
Usage Make a folder called "lib" in your root directory. Put b2b.lua in this folder. In the program you wish to use the library, put run([[lib\b2b.lua]]) at the top.
Function syntax NOTE: all width, height, x, and y values are not pixels, but characters. b2b.menu(x, y, width, height, title, array, color1, color2) b2b.printText(string, colorfg, colorbg)
Screenshots See "Known Bugs"
Code
lib\b2b.lua
b2b={} b2b.version="0.1beta"
b2b.menu = function (x, y, width, height, title, array, color1, color2) local x=x*18-18 local y=y*18-18 local continue=0 local selected=1 local max=height local j=1 while continue==0 do --handle keys if key==28 then if selected>1 then selected=selected-1 if selected<max-height+1 then max=selected+height-1 end else selected=#array max=#array end end if key==37 then if selected<#array then selected=selected+1 if selected>height then max=selected end else selected=1 max=height end end if key==31 then continue=1 end --draw menu zmg.drawRectFill(x+1, y+18, width*12, height*18, color2) zmg.drawText(x+1, y+1, title, color2, color1) j=1 for i=max-height+1, max, 1 do if selected==i then zmg.drawText(x+1, y+(j*18), array[i], color2, color1) else zmg.drawText(x+1, y+(j*18), array[i], color1, color2) end j=j+1 end --refresh screen zmg.fastCopy() --keyMenu if continue~=1 then key=zmg.keyMenu() end end return selected end
b2b.printText = function (string, colorfg, colorbg) local substring={} local k=1 --if string extends past screen end (x) if #string>31 then --split string into screen width sized portions for i=1, math.floor(#string/31)+1, 1 do substring[i] = string.sub(string, i*31-30, i*31) end end --display for j=1, math.floor(#substring/11)+1, 1 do k=1 --clear screen zmg.drawRectFill(0, 0, 384, 216, colorbg) for i=j*11-10, j*11, 1 do if substring[i] then zmg.drawText(1, k*18-18, substring[i], colorfg, colorbg) end k=k+1 end zmg.drawText(1, 198, "Press a key (Page " .. j .. "/" .. math.floor(#substring/11)+1 .. ")", colorbg, colorfg) --refresh zmg.fastCopy() --wait zmg.keyMenu() end end
demo.lua
run([[lib\b2b.lua]]) zmg.clear()
test = b2b.menu(1, 1, 15, 5, "Demo", {"display text","entry2","entry3","entry4","entry5","entry","entry","entry","entry"}, zmg.makeColor("blue"), zmg.makeColor("black")) print(test)
teststring="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed porttitor, sapien quis sagittis sodales, metus felis faucibus sem, eget mollis erat dolor non elit. Cras id nibh vel massa auctor euismod. Fusce semper rutrum neque, ut faucibus lacus egestas at. Donec velit augue, pulvinar sit amet vulputate et, consectetur iaculis neque. Quisque eu enim eu est condimentum feugiat. Duis gravida ultrices elit ac malesuada. Sed dui sapien, hendrerit nec mattis in, viverra sit amet nibh. Donec vel sodales risus. Duis facilisis cursus placerat. Donec sed ligula sed odio mollis posuere. Integer ante sapien, cursus eu eleifend in, tristique vehicula arcu. Fusce vel erat nibh, non placerat quam. Vivamus quis nibh ut est rhoncus faucibus et vestibulum elit. Pellentesque vel dui eget leo varius faucibus a ac mi. Nulla a nulla non enim euismod ornare a non mauris. Proin ut sagittis turpis. Maecenas in sem tellus, sit amet placerat ligula. Praesent non augue tellus, a convallis lacus. Curabitur suscipit consectetur aliquet. Nunc vehicula lorem in odio accumsan a placerat neque aliquam. Etiam ultricies orci eu justo dapibus vel elementum libero fermentum. Donec et risus nisi, non pulvinar nunc. Duis quis sem neque. Ut eu dignissim nisl. Maecenas a nisl risus, sed consequat ante. Morbi vitae imperdiet erat. Suspendisse potenti. In urna est, viverra id hendrerit vel, pulvinar eget felis. Donec suscipit, dui ac molestie molestie, mi orci scelerisque mi, quis cursus mi metus eget nibh. Aliquam commodo mi at eros sagittis dictum. Nunc ultrices turpis eu urna luctus dictum. Cras sollicitudin ante quis metus aliquet rutrum. Nam vestibulum velit commodo risus ornare eu varius sem placerat. Maecenas egestas odio eu mi tincidunt in porttitor lorem consequat. Proin libero risus, venenatis ut suscipit et, varius non sapien. Suspendisse eget elementum dolor."
if test==1 then b2b.printText(teststring, zmg.makeColor("blue"), zmg.makeColor("black")) end
Known Bugs - All the functions use zmg.keyMenu(), so it should be possible to use Screen Record to record the program. However, if you run them while in ScreenRecord mode, your calc will crash with the "SYSTEM ERROR" message.
- running demo.lua twice in a row gives an error starting with "demo.lua:1:syntax error near <eof>"
9
« on: March 01, 2013, 11:27:23 am »
I am having problems setting up prizmsdk: flyingfisch@Office-Optiplex-745:/usr/src/build-gcc$ make all-target-libgcc make[1]: Entering directory `/usr/src/build-gcc/libiberty' make[2]: Entering directory `/usr/src/build-gcc/libiberty/testsuite' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/usr/src/build-gcc/libiberty/testsuite' make[1]: Leaving directory `/usr/src/build-gcc/libiberty' make[1]: Entering directory `/usr/src/build-gcc/lto-plugin' make all-am make[2]: Entering directory `/usr/src/build-gcc/lto-plugin' make[2]: Leaving directory `/usr/src/build-gcc/lto-plugin' make[1]: Leaving directory `/usr/src/build-gcc/lto-plugin' make[1]: Entering directory `/usr/src/build-gcc/intl' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/usr/src/build-gcc/intl' make[1]: Entering directory `/usr/src/build-gcc/build-i686-pc-linux-gnu/libiberty' make[2]: Entering directory `/usr/src/build-gcc/build-i686-pc-linux-gnu/libiberty/testsuite' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/usr/src/build-gcc/build-i686-pc-linux-gnu/libiberty/testsuite' make[1]: Leaving directory `/usr/src/build-gcc/build-i686-pc-linux-gnu/libiberty' make[1]: Entering directory `/usr/src/build-gcc/build-i686-pc-linux-gnu/fixincludes' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/usr/src/build-gcc/build-i686-pc-linux-gnu/fixincludes' make[1]: Entering directory `/usr/src/build-gcc/zlib' true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc" "CFLAGS=-g -O2" "CXXFLAGS=-g -O2" "CFLAGS_FOR_BUILD=-g -O2" "CFLAGS_FOR_TARGET=-g -O2" "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install -c" "LDFLAGS=" "LIBCFLAGS=-g -O2" "LIBCFLAGS_FOR_TARGET=-g -O2" "MAKE=make" "MAKEINFO=/usr/src/gcc/missing makeinfo --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/bash" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/usr/local/cross" "infodir=/usr/local/cross/share/info" "libdir=/usr/local/cross/lib" "prefix=/usr/local/cross" "tooldir=/usr/local/cross/sh3eb-elf" "AR=ar" "AS=as" "CC=gcc" "CXX=g++" "LD=ld" "LIBCFLAGS=-g -O2" "NM=nm" "PICFLAG=" "RANLIB=ranlib" "DESTDIR=" DO=all multi-do # make make[1]: Leaving directory `/usr/src/build-gcc/zlib' make[1]: Entering directory `/usr/src/build-gcc/libcpp' test -f config.h || (rm -f stamp-h1 && make stamp-h1) make[1]: Leaving directory `/usr/src/build-gcc/libcpp' make[1]: Entering directory `/usr/src/build-gcc/libdecnumber' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/usr/src/build-gcc/libdecnumber' make[1]: Entering directory `/usr/src/build-gcc/fixincludes' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/usr/src/build-gcc/fixincludes' make[1]: Entering directory `/usr/src/build-gcc/gcc' Makefile:3795: warning: overriding commands for target `gt-sh.h' ../../gcc/./gcc/config/sh/t-sh:123: warning: ignoring old commands for target `gt-sh.h' make[1]: Leaving directory `/usr/src/build-gcc/gcc' Checking multilib configuration for libgcc... mkdir -p -- sh3eb-elf/libgcc Configuring in sh3eb-elf/libgcc configure: creating cache ./config.cache checking for --enable-version-specific-runtime-libs... no checking for a BSD-compatible install... /usr/bin/install -c checking for gawk... gawk checking build system type... i686-pc-linux-gnu checking host system type... sh3eb-unknown-elf checking for sh3eb-elf-ar... /usr/local/cross/sh3eb-elf/bin/ar checking for sh3eb-elf-lipo... sh3eb-elf-lipo checking for sh3eb-elf-nm... /usr/src/build-gcc/./gcc/nm checking for sh3eb-elf-ranlib... /usr/local/cross/sh3eb-elf/bin/ranlib checking for sh3eb-elf-strip... /usr/local/cross/sh3eb-elf/bin/strip checking whether ln -s works... yes checking for sh3eb-elf-gcc... /usr/src/build-gcc/./gcc/xgcc -B/usr/src/build-gcc/./gcc/ -B/usr/local/cross/sh3eb-elf/bin/ -B/usr/local/cross/sh3eb-elf/lib/ -isystem /usr/local/cross/sh3eb-elf/include -isystem /usr/local/cross/sh3eb-elf/sys-include checking for suffix of object files... configure: error: in `/usr/src/build-gcc/sh3eb-elf/libgcc': configure: error: cannot compute suffix of object files: cannot compile See `config.log' for more details. make: *** [configure-target-libgcc] Error 1
Config.log: flyingfisch@Office-Optiplex-745:/usr/src/build-gcc$ cat config.log This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was generated by GNU Autoconf 2.64. Invocation command line was
$ ../gcc/./configure --target=sh3eb-elf --prefix=/usr/local/cross --disable-nls --enable-languages=c,c++ --without-headers --with-gmp=/usr/gcc_4_7 --with-mpfr=/usr/gcc_4_7 --with-mpc=/usr/gcc_4_7
## --------- ## ## Platform. ## ## --------- ##
hostname = Office-Optiplex-745 uname -m = i686 uname -r = 3.2.0-37-generic-pae uname -s = Linux uname -v = #58-Ubuntu SMP Thu Jan 24 15:51:02 UTC 2013
/usr/bin/uname -p = unknown /bin/uname -X = unknown
/bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown
PATH: /usr/lib/lightdm/lightdm PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /usr/games PATH: /usr/local/cross/bin
## ----------- ## ## Core tests. ## ## ----------- ##
configure:2222: checking build system type configure:2236: result: i686-pc-linux-gnu configure:2283: checking host system type configure:2296: result: i686-pc-linux-gnu configure:2316: checking target system type configure:2329: result: sh3eb-unknown-elf configure:2383: checking for a BSD-compatible install configure:2451: result: /usr/bin/install -c configure:2462: checking whether ln works configure:2484: result: yes configure:2488: checking whether ln -s works configure:2492: result: yes configure:2499: checking for a sed that does not truncate output configure:2563: result: /bin/sed configure:2572: checking for gawk configure:2588: found /usr/bin/gawk configure:2599: result: gawk configure:3913: checking for gcc configure:3929: found /usr/bin/gcc configure:3940: result: gcc configure:4169: checking for C compiler version configure:4178: gcc --version >&5 gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 Copyright (C) 2011 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:4189: $? = 0 configure:4178: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6/lto-wrapper Target: i686-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu Thread model: posix gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) configure:4189: $? = 0 configure:4178: gcc -V >&5 gcc: error: unrecognized option '-V' gcc: fatal error: no input files compilation terminated. configure:4189: $? = 4 configure:4178: gcc -qversion >&5 gcc: error: unrecognized option '-qversion' gcc: fatal error: no input files compilation terminated. configure:4189: $? = 4 configure:4209: checking for C compiler default output file name configure:4231: gcc conftest.c >&5 configure:4235: $? = 0 configure:4272: result: a.out configure:4288: checking whether the C compiler works configure:4297: ./a.out configure:4301: $? = 0 configure:4316: result: yes configure:4323: checking whether we are cross compiling configure:4325: result: no configure:4328: checking for suffix of executables configure:4335: gcc -o conftest conftest.c >&5 configure:4339: $? = 0 configure:4361: result: configure:4367: checking for suffix of object files configure:4389: gcc -c conftest.c >&5 configure:4393: $? = 0 configure:4414: result: o configure:4418: checking whether we are using the GNU C compiler configure:4437: gcc -c conftest.c >&5 configure:4437: $? = 0 configure:4446: result: yes configure:4455: checking whether gcc accepts -g configure:4475: gcc -c -g conftest.c >&5 configure:4475: $? = 0 configure:4516: result: yes configure:4533: checking for gcc option to accept ISO C89 configure:4597: gcc -c -g -O2 conftest.c >&5 configure:4597: $? = 0 configure:4610: result: none needed configure:4688: checking for g++ configure:4704: found /usr/bin/g++ configure:4715: result: g++ configure:4742: checking for C++ compiler version configure:4751: g++ --version >&5 g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 Copyright (C) 2011 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:4762: $? = 0 configure:4751: g++ -v >&5 Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6/lto-wrapper Target: i686-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu Thread model: posix gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) configure:4762: $? = 0 configure:4751: g++ -V >&5 g++: error: unrecognized option '-V' g++: fatal error: no input files compilation terminated. configure:4762: $? = 4 configure:4751: g++ -qversion >&5 g++: error: unrecognized option '-qversion' g++: fatal error: no input files compilation terminated. configure:4762: $? = 4 configure:4766: checking whether we are using the GNU C++ compiler configure:4785: g++ -c conftest.cpp >&5 configure:4785: $? = 0 configure:4794: result: yes configure:4803: checking whether g++ accepts -g configure:4823: g++ -c -g conftest.cpp >&5 configure:4823: $? = 0 configure:4864: result: yes configure:4953: checking for gnatbind configure:4983: result: no configure:5045: checking for gnatmake configure:5075: result: no configure:5094: checking whether compiler driver understands Ada configure:5117: result: no configure:5126: checking how to compare bootstrapped objects configure:5151: result: cmp --ignore-initial=16 $$f1 $$f2 configure:5167: checking for objdir configure:5182: result: .libs configure:5348: checking for the correct version of gmp.h configure:5368: gcc -c -g -O2 -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include conftest.c >&5 configure:5368: $? = 0 configure:5386: gcc -c -g -O2 -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include conftest.c >&5 configure:5386: $? = 0 configure:5387: result: yes configure:5403: checking for the correct version of mpfr.h configure:5421: gcc -c -g -O2 -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include conftest.c >&5 configure:5421: $? = 0 configure:5438: gcc -c -g -O2 -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include conftest.c >&5 configure:5438: $? = 0 configure:5439: result: yes configure:5456: checking for the correct version of mpc.h configure:5473: gcc -c -g -O2 -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include conftest.c >&5 configure:5473: $? = 0 configure:5489: gcc -c -g -O2 -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include conftest.c >&5 configure:5489: $? = 0 configure:5490: result: yes configure:5508: checking for the correct version of the gmp/mpfr/mpc libraries configure:5539: gcc -o conftest -g -O2 -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include conftest.c -L/usr/gcc_4_7/lib -L/usr/gcc_4_7/lib -L/usr/gcc_4_7/lib -lmpc -lmpfr -lgmp >&5 configure:5539: $? = 0 configure:5540: result: yes configure:5724: checking for PWL_handle_timeout in -lpwl configure:5749: gcc -o conftest -g -O2 conftest.c -lpwl >&5 /usr/bin/ld: cannot find -lpwl collect2: ld returned 1 exit status configure:5749: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char PWL_handle_timeout (); | int | main () | { | return PWL_handle_timeout (); | ; | return 0; | } configure:5758: result: no configure:5772: checking for version 0.11 (revision 0 or later) of PPL configure:5789: gcc -c -g -O2 -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include conftest.c >&5 conftest.c:10:19: fatal error: ppl_c.h: No such file or directory compilation terminated. configure:5789: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include "ppl_c.h" | int | main () | { | | #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 | choke me | #endif | | ; | return 0; | } configure:5793: result: no configure:7218: checking for default BUILD_CONFIG configure:7250: result: configure:7740: checking for bison configure:7756: found /usr/bin/bison configure:7767: result: bison -y configure:7788: checking for bison configure:7804: found /usr/bin/bison configure:7815: result: bison configure:7835: checking for gm4 configure:7865: result: no configure:7835: checking for gnum4 configure:7865: result: no configure:7835: checking for m4 configure:7851: found /usr/bin/m4 configure:7862: result: m4 configure:7882: checking for flex configure:7898: found /usr/bin/flex configure:7909: result: flex configure:7930: checking for flex configure:7946: found /usr/bin/flex configure:7957: result: flex configure:7977: checking for makeinfo configure:8007: result: no configure:8038: checking for expect configure:8068: result: no configure:8087: checking for runtest configure:8117: result: no configure:8232: checking for ar configure:8248: found /usr/bin/ar configure:8259: result: ar configure:8373: checking for as configure:8389: found /usr/bin/as configure:8400: result: as configure:8514: checking for dlltool configure:8544: result: no configure:8655: checking for ld configure:8671: found /usr/bin/ld configure:8682: result: ld configure:8796: checking for lipo configure:8826: result: no configure:8937: checking for nm configure:8953: found /usr/bin/nm configure:8964: result: nm configure:9078: checking for ranlib configure:9094: found /usr/bin/ranlib configure:9105: result: ranlib configure:9214: checking for strip configure:9230: found /usr/bin/strip configure:9241: result: strip configure:9350: checking for windres configure:9380: result: no configure:9491: checking for windmc configure:9521: result: no configure:9632: checking for objcopy configure:9648: found /usr/bin/objcopy configure:9659: result: objcopy configure:9773: checking for objdump configure:9789: found /usr/bin/objdump configure:9800: result: objdump configure:9914: checking for sh3eb-elf-cc configure:9944: result: no configure:9914: checking for sh3eb-elf-gcc configure:9944: result: no configure:10075: checking for sh3eb-elf-c++ configure:10105: result: no configure:10075: checking for sh3eb-elf-g++ configure:10105: result: no configure:10075: checking for sh3eb-elf-cxx configure:10105: result: no configure:10075: checking for sh3eb-elf-gxx configure:10105: result: no configure:10236: checking for sh3eb-elf-gcc configure:10266: result: no configure:10392: checking for sh3eb-elf-gcj configure:10422: result: no configure:10553: checking for sh3eb-elf-gfortran configure:10583: result: no configure:10714: checking for sh3eb-elf-gccgo configure:10744: result: no configure:10844: checking for ar configure:10862: found /usr/local/cross/sh3eb-elf/bin/ar configure:10874: result: /usr/local/cross/sh3eb-elf/bin/ar configure:11074: checking for as configure:11092: found /usr/local/cross/sh3eb-elf/bin/as configure:11104: result: /usr/local/cross/sh3eb-elf/bin/as configure:11304: checking for dlltool configure:11337: result: no configure:11415: checking for sh3eb-elf-dlltool configure:11445: result: no configure:11534: checking for ld configure:11552: found /usr/local/cross/sh3eb-elf/bin/ld configure:11564: result: /usr/local/cross/sh3eb-elf/bin/ld configure:11764: checking for lipo configure:11797: result: no configure:11875: checking for sh3eb-elf-lipo configure:11905: result: no configure:11994: checking for nm configure:12012: found /usr/local/cross/sh3eb-elf/bin/nm configure:12024: result: /usr/local/cross/sh3eb-elf/bin/nm configure:12224: checking for objdump configure:12242: found /usr/local/cross/sh3eb-elf/bin/objdump configure:12254: result: /usr/local/cross/sh3eb-elf/bin/objdump configure:12454: checking for ranlib configure:12472: found /usr/local/cross/sh3eb-elf/bin/ranlib configure:12484: result: /usr/local/cross/sh3eb-elf/bin/ranlib configure:12684: checking for strip configure:12702: found /usr/local/cross/sh3eb-elf/bin/strip configure:12714: result: /usr/local/cross/sh3eb-elf/bin/strip configure:12914: checking for windres configure:12947: result: no configure:13025: checking for sh3eb-elf-windres configure:13055: result: no configure:13144: checking for windmc configure:13177: result: no configure:13255: checking for sh3eb-elf-windmc configure:13285: result: no configure:13352: checking where to find the target ar configure:13380: result: pre-installed in /usr/local/cross/sh3eb-elf/bin configure:13394: checking where to find the target as configure:13422: result: pre-installed in /usr/local/cross/sh3eb-elf/bin configure:13436: checking where to find the target cc configure:13459: result: just compiled configure:13478: checking where to find the target c++ configure:13504: result: just compiled configure:13523: checking where to find the target c++ for libstdc++ configure:13549: result: just compiled configure:13568: checking where to find the target dlltool configure:13605: result: pre-installed configure:13610: checking where to find the target gcc configure:13633: result: just compiled configure:13652: checking where to find the target gcj configure:13692: result: pre-installed configure:13697: checking where to find the target gfortran configure:13737: result: pre-installed configure:13742: checking where to find the target gccgo configure:13782: result: pre-installed configure:13787: checking where to find the target ld configure:13815: result: pre-installed in /usr/local/cross/sh3eb-elf/bin configure:13829: checking where to find the target lipo configure:13855: result: pre-installed configure:13860: checking where to find the target nm configure:13888: result: pre-installed in /usr/local/cross/sh3eb-elf/bin configure:13902: checking where to find the target objdump configure:13930: result: pre-installed in /usr/local/cross/sh3eb-elf/bin configure:13944: checking where to find the target ranlib configure:13972: result: pre-installed in /usr/local/cross/sh3eb-elf/bin configure:13986: checking where to find the target strip configure:14014: result: pre-installed in /usr/local/cross/sh3eb-elf/bin configure:14028: checking where to find the target windres configure:14065: result: pre-installed configure:14070: checking where to find the target windmc configure:14107: result: pre-installed configure:14140: checking whether to enable maintainer-specific portions of Makefiles configure:14149: result: no configure:14182: checking whether -fkeep-inline-functions is supported configure:14201: gcc -c -g -O2 -fkeep-inline-functions conftest.c >&5 configure:14201: $? = 0 configure:14202: result: yes configure:14399: creating ./config.status
## ---------------------- ## ## Running config.status. ## ## ---------------------- ##
This file was extended by config.status, which was generated by GNU Autoconf 2.64. Invocation command line was
CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status
on Office-Optiplex-745
config.status:953: creating Makefile
## ---------------- ## ## Cache variables. ## ## ---------------- ##
ac_cv_build=i686-pc-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_AR_FOR_TARGET_set= ac_cv_env_AR_FOR_TARGET_value= ac_cv_env_AR_set= ac_cv_env_AR_value= ac_cv_env_AS_FOR_TARGET_set= ac_cv_env_AS_FOR_TARGET_value= ac_cv_env_AS_set= ac_cv_env_AS_value= ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_FOR_TARGET_set= ac_cv_env_CC_FOR_TARGET_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_FOR_TARGET_set= ac_cv_env_CXX_FOR_TARGET_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_DLLTOOL_FOR_TARGET_set= ac_cv_env_DLLTOOL_FOR_TARGET_value= ac_cv_env_DLLTOOL_set= ac_cv_env_DLLTOOL_value= ac_cv_env_GCC_FOR_TARGET_set= ac_cv_env_GCC_FOR_TARGET_value= ac_cv_env_GCJ_FOR_TARGET_set= ac_cv_env_GCJ_FOR_TARGET_value= ac_cv_env_GFORTRAN_FOR_TARGET_set= ac_cv_env_GFORTRAN_FOR_TARGET_value= ac_cv_env_GOC_FOR_TARGET_set= ac_cv_env_GOC_FOR_TARGET_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LD_FOR_TARGET_set= ac_cv_env_LD_FOR_TARGET_value= ac_cv_env_LD_set= ac_cv_env_LD_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LIPO_FOR_TARGET_set= ac_cv_env_LIPO_FOR_TARGET_value= ac_cv_env_LIPO_set= ac_cv_env_LIPO_value= ac_cv_env_NM_FOR_TARGET_set= ac_cv_env_NM_FOR_TARGET_value= ac_cv_env_NM_set= ac_cv_env_NM_value= ac_cv_env_OBJCOPY_set= ac_cv_env_OBJCOPY_value= ac_cv_env_OBJDUMP_FOR_TARGET_set= ac_cv_env_OBJDUMP_FOR_TARGET_value= ac_cv_env_OBJDUMP_set= ac_cv_env_OBJDUMP_value= ac_cv_env_RANLIB_FOR_TARGET_set= ac_cv_env_RANLIB_FOR_TARGET_value= ac_cv_env_RANLIB_set= ac_cv_env_RANLIB_value= ac_cv_env_STRIP_FOR_TARGET_set= ac_cv_env_STRIP_FOR_TARGET_value= ac_cv_env_STRIP_set= ac_cv_env_STRIP_value= ac_cv_env_WINDMC_FOR_TARGET_set= ac_cv_env_WINDMC_FOR_TARGET_value= ac_cv_env_WINDMC_set= ac_cv_env_WINDMC_value= ac_cv_env_WINDRES_FOR_TARGET_set= ac_cv_env_WINDRES_FOR_TARGET_value= ac_cv_env_WINDRES_set= ac_cv_env_WINDRES_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_build_configargs_set= ac_cv_env_build_configargs_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_host_configargs_set= ac_cv_env_host_configargs_value= ac_cv_env_target_alias_set=set ac_cv_env_target_alias_value=sh3eb-elf ac_cv_env_target_configargs_set= ac_cv_env_target_configargs_value= ac_cv_host=i686-pc-linux-gnu ac_cv_lib_pwl_PWL_handle_timeout=no ac_cv_objext=o ac_cv_path_AR_FOR_TARGET=/usr/local/cross/sh3eb-elf/bin/ar ac_cv_path_AS_FOR_TARGET=/usr/local/cross/sh3eb-elf/bin/as ac_cv_path_LD_FOR_TARGET=/usr/local/cross/sh3eb-elf/bin/ld ac_cv_path_NM_FOR_TARGET=/usr/local/cross/sh3eb-elf/bin/nm ac_cv_path_OBJDUMP_FOR_TARGET=/usr/local/cross/sh3eb-elf/bin/objdump ac_cv_path_RANLIB_FOR_TARGET=/usr/local/cross/sh3eb-elf/bin/ranlib ac_cv_path_SED=/bin/sed ac_cv_path_STRIP_FOR_TARGET=/usr/local/cross/sh3eb-elf/bin/strip ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AR=ar ac_cv_prog_AS=as ac_cv_prog_AWK=gawk ac_cv_prog_BISON=bison ac_cv_prog_FLEX=flex ac_cv_prog_LD=ld ac_cv_prog_LEX=flex ac_cv_prog_M4=m4 ac_cv_prog_NM=nm ac_cv_prog_OBJCOPY=objcopy ac_cv_prog_OBJDUMP=objdump ac_cv_prog_RANLIB=ranlib ac_cv_prog_STRIP=strip ac_cv_prog_YACC='bison -y' ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes ac_cv_target=sh3eb-unknown-elf acx_cv_cc_gcc_supports_ada=no acx_cv_prog_LN=ln gcc_cv_prog_cmp_skip='cmp --ignore-initial=16 $$f1 $$f2' gcc_cv_tool_dirs=/usr/local/cross/libexec/gcc/sh3eb-elf/4.6.2:/usr/local/cross/libexec/gcc/sh3eb-elf:/usr/lib/gcc/sh3eb-elf/4.6.2:/usr/lib/gcc/sh3eb-elf:/usr/local/cross/sh3eb-elf/bin/sh3eb-elf/4.6.2:/usr/local/cross/sh3eb-elf/bin: gcc_cv_tool_prefix=/usr/local/cross lt_cv_objdir=.libs
## ----------------- ## ## Output variables. ## ## ----------------- ##
AR='ar' AR_FOR_BUILD='$(AR)' AR_FOR_TARGET='/usr/local/cross/sh3eb-elf/bin/ar' AS='as' AS_FOR_BUILD='$(AS)' AS_FOR_TARGET='/usr/local/cross/sh3eb-elf/bin/as' AWK='gawk' BISON='bison' BUILD_CONFIG='' CC='gcc' CC_FOR_BUILD='$(CC)' CC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/' CFLAGS='-g -O2' CFLAGS_FOR_BUILD='-g -O2' CFLAGS_FOR_TARGET='-g -O2' COMPILER_AS_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/as' COMPILER_LD_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/collect-ld' COMPILER_NM_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/nm' CONFIGURE_GDB_TK='' CPPFLAGS='' CXX='g++' CXXFLAGS='-g -O2' CXXFLAGS_FOR_BUILD='-g -O2' CXXFLAGS_FOR_TARGET='-g -O2' CXX_FOR_BUILD='$(CXX)' CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/g++ -B$$r/$(HOST_SUBDIR)/gcc/ -nostdinc++ `if test -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags; then $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags --build-includes; else echo -funconfigured-libstdc++-v3 ; fi` -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs' DEBUG_PREFIX_CFLAGS_FOR_TARGET='' DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DLT_OBJDIR=\".libs/\"' DLLTOOL='dlltool' DLLTOOL_FOR_BUILD='$(DLLTOOL)' DLLTOOL_FOR_TARGET='sh3eb-elf-dlltool' ECHO_C='' ECHO_N='-n' ECHO_T='' EXEEXT='' EXPECT='expect' FLAGS_FOR_TARGET=' -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include' FLEX='flex' GCC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/' GCC_SHLIB_SUBDIR='' GCJ_FOR_BUILD='$(GCJ)' GCJ_FOR_TARGET='sh3eb-elf-gcj' GDB_TK='' GFORTRAN_FOR_BUILD='$(GFORTRAN)' GFORTRAN_FOR_TARGET='sh3eb-elf-gfortran' GNATBIND='no' GNATMAKE='no' GOC_FOR_BUILD='$(GOC)' GOC_FOR_TARGET='sh3eb-elf-gccgo' INSTALL_DATA='${INSTALL} -m 644' INSTALL_GDB_TK='' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' LD='ld' LDFLAGS='' LDFLAGS_FOR_BUILD='' LD_FOR_BUILD='$(LD)' LD_FOR_TARGET='/usr/local/cross/sh3eb-elf/bin/ld' LEX='flex' LIBOBJS='' LIBS='' LIPO='lipo' LIPO_FOR_TARGET='sh3eb-elf-lipo' LN='ln' LN_S='ln -s' LTLIBOBJS='' M4='m4' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='/usr/src/gcc/missing makeinfo' NM='nm' NM_FOR_BUILD='$(NM)' NM_FOR_TARGET='/usr/local/cross/sh3eb-elf/bin/nm' OBJCOPY='objcopy' OBJDUMP='objdump' OBJDUMP_FOR_TARGET='/usr/local/cross/sh3eb-elf/bin/objdump' OBJEXT='o' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_URL='' PACKAGE_VERSION='' PATH_SEPARATOR=':' RANLIB='ranlib' RANLIB_FOR_BUILD='$(RANLIB)' RANLIB_FOR_TARGET='/usr/local/cross/sh3eb-elf/bin/ranlib' RAW_CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -shared-libgcc -B$$r/$(HOST_SUBDIR)/gcc -nostdinc++ -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs' RPATH_ENVVAR='LD_LIBRARY_PATH' RUNTEST='runtest' SED='/bin/sed' SHELL='/bin/bash' STRIP='strip' STRIP_FOR_TARGET='/usr/local/cross/sh3eb-elf/bin/strip' SYSROOT_CFLAGS_FOR_TARGET='' TOPLEVEL_CONFIGURE_ARGUMENTS='../gcc/./configure --target=sh3eb-elf --prefix=/usr/local/cross --disable-nls --enable-languages=c,c++ --without-headers --with-gmp=/usr/gcc_4_7 --with-mpfr=/usr/gcc_4_7 --with-mpc=/usr/gcc_4_7' WINDMC='windmc' WINDMC_FOR_BUILD='$(WINDMC)' WINDMC_FOR_TARGET='sh3eb-elf-windmc' WINDRES='windres' WINDRES_FOR_BUILD='$(WINDRES)' WINDRES_FOR_TARGET='sh3eb-elf-windres' YACC='bison -y' ac_ct_CC='gcc' ac_ct_CXX='g++' bindir='${exec_prefix}/bin' build='i686-pc-linux-gnu' build_alias='' build_configargs=' --cache-file=../config.cache '\''--prefix=/usr/local/cross'\'' '\''--disable-nls'\'' '\''--without-headers'\'' '\''--with-gmp=/usr/gcc_4_7'\'' '\''--with-mpfr=/usr/gcc_4_7'\'' '\''--with-mpc=/usr/gcc_4_7'\'' '\''--enable-languages=c,c++,lto'\'' --program-transform-name='\''s&^&sh3eb-elf-&'\'' --disable-option-checking' build_configdirs=' libiberty fixincludes' build_cpu='i686' build_libsubdir='build-i686-pc-linux-gnu' build_noncanonical='i686-pc-linux-gnu' build_os='linux-gnu' build_subdir='build-i686-pc-linux-gnu' build_tooldir='${exec_prefix}/sh3eb-elf' build_vendor='pc' clooginc='' clooglibs='' compare_exclusions='gcc/cc*-checksum$(objext) | gcc/ada/*tools/*' config_shell='/bin/bash' configdirs=' intl libiberty zlib libcpp libdecnumber fixincludes gcc lto-plugin' datadir='${datarootdir}' datarootdir='${prefix}/share' do_compare='cmp --ignore-initial=16 $$f1 $$f2' docdir='${datarootdir}/doc/${PACKAGE}' dvidir='${docdir}' exec_prefix='${prefix}' extra_host_libiberty_configure_flags='--enable-shared' extra_mpc_gmp_configure_flags='' extra_mpc_mpfr_configure_flags='' extra_mpfr_configure_flags='' gmpinc='-I/usr/gcc_4_7/include -I/usr/gcc_4_7/include -I/usr/gcc_4_7/include ' gmplibs='-L/usr/gcc_4_7/lib -L/usr/gcc_4_7/lib -L/usr/gcc_4_7/lib -lmpc -lmpfr -lgmp' host='i686-pc-linux-gnu' host_alias='' host_configargs=' --cache-file=./config.cache '\''--prefix=/usr/local/cross'\'' '\''--disable-nls'\'' '\''--without-headers'\'' '\''--with-gmp=/usr/gcc_4_7'\'' '\''--with-mpfr=/usr/gcc_4_7'\'' '\''--with-mpc=/usr/gcc_4_7'\'' '\''--enable-languages=c,c++,lto'\'' --program-transform-name='\''s&^&sh3eb-elf-&'\'' --disable-option-checking' host_cpu='i686' host_noncanonical='i686-pc-linux-gnu' host_os='linux-gnu' host_subdir='.' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' oldincludedir='/usr/include' pdfdir='${docdir}' poststage1_ldflags='-static-libstdc++ -static-libgcc' poststage1_libs='' pplinc='' ppllibs='' prefix='/usr/local/cross' program_transform_name='s&^&sh3eb-elf-&' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' stage1_cflags='-g -fkeep-inline-functions' stage1_checking='--enable-checking=yes,types' stage1_languages='c,lto' stage1_ldflags='' stage1_libs='' stage2_werror_flag='' sysconfdir='${prefix}/etc' target='sh3eb-unknown-elf' target_alias='sh3eb-elf' target_configargs='--cache-file=./config.cache --enable-multilib --with-cross-host=i686-pc-linux-gnu '\''--prefix=/usr/local/cross'\'' '\''--disable-nls'\'' '\''--without-headers'\'' '\''--enable-languages=c,c++,lto'\'' --program-transform-name='\''s&^&sh3eb-elf-&'\'' --disable-option-checking' target_configdirs=' libgcc libstdc++-v3 libssp libquadmath' target_cpu='sh3eb' target_noncanonical='sh3eb-elf' target_os='elf' target_subdir='sh3eb-elf' target_vendor='unknown' tooldir='${exec_prefix}/sh3eb-elf'
## ------------------- ## ## File substitutions. ## ## ------------------- ##
alphaieee_frag='/dev/null' host_makefile_frag='../gcc/./config/mh-x86omitfp' ospace_frag='/dev/null' serialization_dependencies='serdep.tmp' target_makefile_frag='/dev/null'
## ----------- ## ## confdefs.h. ## ## ----------- ##
/* confdefs.h */ #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define LT_OBJDIR ".libs/"
configure: exit 0
Any ideas? just FYI, make all-gcc and make install-gcc ran with no errors. I also have made sure that i ran configure with export PATH=$PATH:/usr/local/cross/bin set. also: flyingfisch@Office-Optiplex-745:/usr/local/cross/bin$ ls sh3eb-elf-addr2line sh3eb-elf-gcc sh3eb-elf-objdump sh3eb-elf-ar sh3eb-elf-gcc-4.6.2 sh3eb-elf-ranlib sh3eb-elf-as sh3eb-elf-gcov sh3eb-elf-readelf sh3eb-elf-c++ sh3eb-elf-gprof sh3eb-elf-size sh3eb-elf-c++filt sh3eb-elf-ld sh3eb-elf-strings sh3eb-elf-cpp sh3eb-elf-ld.bfd sh3eb-elf-strip sh3eb-elf-elfedit sh3eb-elf-nm sh3eb-elf-g++ sh3eb-elf-objcopy
10
« on: February 23, 2013, 09:32:57 pm »
I have made a port of Aspirin for the PRIZM in LuaZM. Objective: Use arrow keys to manoeuvre to the target without hitting the obstacles. Bugs: None, of course. Then again, if you happen to notice any random features, please let me know! Download
11
« on: January 30, 2013, 01:32:52 pm »
I have been trying to change my avatar but when i press update profile, the page reloads and my old avatar is back.
12
« on: December 21, 2012, 12:00:46 pm »
I am trying to make a sudoku game in LuaZM. Right now I am stuck at how to generate a board. So my first question is, does anyone have an algorithm, and my second is if there is already a lua sudoku board generator that i could use without having to reinvent the wheel.
13
« on: November 28, 2012, 08:19:17 am »
OK, I am trying to learn how to do 3D using this guide, and have gotten to the part for rotating around a point. The problem is, all it seems to be doing is skewing my cube. Here is my code: -- base functions local clear = zmg.clear local drawCircle = zmg.drawCircle local drawLine = zmg.drawLine local drawPoint = zmg.drawPoint local drawRectFill = zmg.drawRectFill local drawText = zmg.drawText local fastCopy = zmg.fastCopy local keyMenuFast = zmg.keyMenuFast local keyDirectPoll = zmg.keyDirectPoll local keyDirect = zmg.keyDirect local makeColor = zmg.makeColor local floor = math.floor local sin = math.sin local cos = math.cos local pi = math.pi
-- major vars local key = {f1=79, f2=69, f3=59, f4=49, f5=39, f6=29, alpha=77, exit=47, optn=68, up=28, down=37, left=38, right=27, exe=31, shift=78} local color = {bg=makeColor("white"), fg=makeColor("gray")} local exit=0
-- 3d vars local move = {x=50,y=50} local piv = {x=0, y=0} local angle = {z=0} local roffset = {x=0, y=0} local x = 0 local y = 0 local xd = 0 local yd = 0 local scale = 1
-- 3d arrays local cube = {x,y} cube.x = {-20, 20, -20, 20} cube.y = {-20, -20, 20, 20}
-- functions local function d2r(angle) return angle*(pi/180) end
local function drawCrosshair(x, y, size, color) drawLine(x-size, y, x+size, y, color) drawLine(x, y-size, x, y+size, color) end
-- 3d while exit~=1 do keyDirectPoll() clear() -- SPLAT BEGIN for i=1, 4, 1 do xd = cube.x[i]-piv.x yd = cube.y[i]-piv.y roffset.x = xd*cos(d2r(angle.z)) - yd*sin(d2r(angle.z)) - xd roffset.y = xd*sin(d2r(angle.z)) - yd*cos(d2r(angle.z)) - yd x = (cube.x[i] + roffset.x) / scale + move.x y = (cube.y[i] + roffset.y) / scale + move.y drawCrosshair(x, y, 5/scale, color.fg) end if keyDirect(key.left)>0 then move.x = move.x-2 end if keyDirect(key.right)>0 then move.x = move.x+2 end if keyDirect(key.up)>0 then move.y = move.y-2 end if keyDirect(key.down)>0 then move.y = move.y+2 end if keyDirect(key.f1)>0 then scale = scale*1.02 end if keyDirect(key.f2)>0 then scale = scale/1.02 end if keyDirect(key.f3)>0 then angle.z = angle.z-1 end if keyDirect(key.f4)>0 then angle.z = angle.z+1 end if keyDirect(key.exit)>0 then exit=1 end -- SPLAT END drawText(1, 1, angle.z, color.fg, color.bg) fastCopy() end
14
« on: November 02, 2012, 02:13:45 pm »
I am using this code for an email form processor:
<?PHP //security function function IsInjected($str) { $injections = array('(\n+)', '(\r+)', '(\t+)', '(%0A+)', '(%0D+)', '(%08+)', '(%09+)'); $inject = join('|', $injections); $inject = "/$inject/i"; if(preg_match($inject,$str)) { return true; } else { return false; } }
//Get form entries $name = $_POST['name']; $email = $_POST['email']; $phone = $_POST['phone']; $description = $_POST['job-description']; $contact_method = $_POST['contact-method'];
//security if(IsInjected($email)) { echo "Bad email value!"; exit; }
//Compose email $email_from = <valid address>; $email_subject = "TopPage Design form submission: quotes.html"; $email_body = "*** FORM SUBMISSION *** \n name: " . $name . "\n email: " . $email . "\n phone: " . $phone . "\n description: " . $description . "\n contact method: " . $contact_method . "\n *** END OF EMAIL ***";
//Send email $to = <valid address>; $headers = "From" . $email_from . "\r\n"; $headers .= "Reply-To:" . $email . "\r\n";
//send mail($to, $email_subject, $email_body, $headers); //success echo("success."); ?>
But for some reason I don't receive the email, even though i get the success message. Am I doing something wrong?
|