nslu2-info.de ist ein privates Projekt von mir, welches jeden Monat aus eigener Tasche finanziert wird. Mit einer freiwilligen Spende wird der Erhalt und der weitere Ausbau dieses Forums unterstützt. Um mich beim Erhalt des Forums zu unterstützen, kannst Du entweder via Flattr oder Paypal spenden. Ich bedanke mich schon jetzt bei allen Unterstützern.
This post has been edited 1 times, last edit by "kai-t" (Dec 19th 2009, 5:36pm)
wcf.user.option.userOption68: 64X2/8GB/Ubuntu10.04LTS
wcf.user.option.userOption65: anderes
Location: Berlin
Occupation: TK/IT Consulting and Engineering
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
OPTWARE-DEVEL_DEPENDS=autoconf \ , automake \ , bash \ , bison \ , bzip2 \ , coreutils \ , diffutils \ , file \ , findutils \ , flex \ , gawk \ , groff \ , gzip \ , libstdc++ \ , libtool \ , make \ , m4 \ , ncurses \ , openssl \ , patch \ , perl \ , pkgconfig \ , python25 \ , rsync \ , sed \ , svn \ , tar \ , wget-ssl |
wcf.user.option.userOption68: 64X2/8GB/Ubuntu10.04LTS
wcf.user.option.userOption65: anderes
Location: Berlin
Occupation: TK/IT Consulting and Engineering
|
|
Source code |
1 2 3 4 5 6 7 8 |
#include <stdio.h>
int main(void)
{
printf("Hello, World\n");
return 0;
}
|
|
|
Source code |
1 2 3 4 5 6 7 8 |
#include<iostream>
using namespace std;
int main()
{
cout<<"Hallo Welt\n";
cin.get();
}
|
This post has been edited 1 times, last edit by "kai-t" (Dec 19th 2009, 10:56pm)
wcf.user.option.userOption68: 64X2/8GB/Ubuntu10.04LTS
wcf.user.option.userOption65: anderes
Location: Berlin
Occupation: TK/IT Consulting and Engineering
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
/share/hdd/stick/cs/oscam/build/test # ./a.out ./a.out: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory /share/hdd/stick/cs/oscam/build/test # find / -name "libstdc++.so.5" /opt/lib/libstdc++.so.5 /opt/armeb/armv5b-softfloat-linux/lib/libstdc++.dir/libstdc++.so.5 /opt/armeb/armv5b-softfloat-linux/lib/libstdc++.so.5 /share/hdd/stick/cs/oscam/build/test # set HISTFILE='/.ash_history' HOME='/' IFS=' ' LD_LIBRARY_PATH='/opt/lib:/lib:/usr/lib' LOGNAME='root' MAIL='/var/spool/mail/root' OLDPWD='/' OPTIND='1' 'ATH='/opt/bin:/sbin:/bin:/usr/sbin:/usr/bin:/opt/sbin PPID='32081' PS1='\w \$ ' PS2='> ' PS4='+ ' PWD='/share/hdd/stick/cs/oscam/build/test' SHELL='/opt/bin/sh' USER='root' _='./a.out' |
wcf.user.option.userOption68: 64X2/8GB/Ubuntu10.04LTS
wcf.user.option.userOption65: anderes
Location: Berlin
Occupation: TK/IT Consulting and Engineering
wcf.user.option.userOption68: 64X2/8GB/Ubuntu10.04LTS
wcf.user.option.userOption65: anderes
Location: Berlin
Occupation: TK/IT Consulting and Engineering
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
/share/hdd/stick/cs/oscam/build/oscam-svn # make
uname: unrecognized option `--machine'
BusyBox v1.00 (2006.04.11-01:22+0000) multi-call binary
Usage: uname [OPTION]...
Print certain system information. With no OPTION, same as -s.
Options:
-a print all information
-m the machine (hardware) type
-n print the machine's network node hostname
-r print the operating system release
-s print the operating system name
-p print the host processor type
-v print the operating system version
-----------------------------------------------------
Build for platform -pc-linux
-----------------------------------------------------
make -C cscrypt
make[2]: Nothing to be done for `all'.
make -C csctapi
make[2]: Nothing to be done for `all'.
ranlib lib/libcs--pc-linux.a
gcc -O2 -DOS_LINUX -DCS_CONFDIR='"/usr/local/etc"' -Winline -Wall -Wno-implicit-function-declaration -Wno-parentheses -finline-functions -fomit-frame-pointer -D'CS_SVN_VERSION="925"' oscam.c lib/libcs--pc-linux.a lib/libcscrypt--pc-linux.a lib/libcsctapi--pc-linux.a -o "Distribution/oscam-0.99.4svn925--pc-linux" -lcrypto -lpthread
oscam.c: In function `logCWtoFile':
oscam.c:1376: warning: `%y' yields only last 2 digits of year
oscam.c: In function `chk_dcw':
oscam.c:1592: warning: dereferencing type-punned pointer will break strict-aliasing rules
/opt/armeb/lib/gcc-lib/armv5b-softfloat-linux/3.3.5/../../../../armv5b-softfloat-linux/bin/ld: cannot find -lcrypto
collect2: ld returned 1 exit status
make[1]: *** [Distribution/oscam-0.99.4svn925--pc-linux] Error 1
make: [i386-pc-linux] Error 2 (ignored)
/share/hdd/stick/cs/oscam/build/oscam-svn #
|