search for: j20

Displaying 7 results from an estimated 7 matches for "j20".

Did you mean: 20
2006 Aug 26
0
DRbFire / ActiveRecord performances
..." => "color3") g.save end class Server def find(i) Garden.find(i) end end s = Server.new g = s.find(1) puts "#{g[:id]} | #{g[:name]}" g.flowers.each do |f| puts "#{f[:id]} | #{f[:garden_id]} | #{f[:name]}" end DRb.start_service(''drbfire://j20.attiksystem.ch:9000'', s, DRbFire::ROLE => DRbFire::SERVER) DRb.thread.join Client code: ------------ #!/usr/local/bin/ruby require ''drb/drbfire'' DRb.start_service(''drbfire://j20.attiksystem.ch:9000'', nil, DRbFire::ROLE => DRbFire::CLIENT) obj...
2020 Jul 22
2
How to debug a missing symbol with ThinLTO?
...lvm/bin>:$PATH export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk untar libogg AR=llvm-ar CC=clang CXX=clang++ CFLAGS="-flto=thin -mmacosx-version-min=10.9" LDFLAGS=-flto=thin ./configure --disable-shared --enable-static make -j20 Then try to link to the library in a small C++ program - I used this: #include <iostream> #include "ogg/ogg.h" using namespace std; int main() { ogg_stream_state os; if (ogg_stream_init(&os, 123) == 0) cout << "Initialized stream succesfully" << endl;...
2020 Jul 22
2
How to debug a missing symbol with ThinLTO?
...OT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk > > untar libogg > AR=llvm-ar CC=clang CXX=clang++ CFLAGS="-flto=thin > -mmacosx-version-min=10.9" LDFLAGS=-flto=thin ./configure > --disable-shared --enable-static > make -j20 > > Then try to link to the library in a small C++ program - I used this: > > #include <iostream> > #include "ogg/ogg.h" > > using namespace std; > > int main() > { > ogg_stream_state os; > if (ogg_stream_init(&os, 123) == 0) > cout &lt...
2020 Jul 22
2
How to debug a missing symbol with ThinLTO?
...pp/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk >> >> untar libogg >> AR=llvm-ar CC=clang CXX=clang++ CFLAGS="-flto=thin >> -mmacosx-version-min=10.9" LDFLAGS=-flto=thin ./configure >> --disable-shared --enable-static >> make -j20 >> >> Then try to link to the library in a small C++ program - I used this: >> >> #include <iostream> >> #include "ogg/ogg.h" >> >> using namespace std; >> >> int main() >> { >> ogg_stream_state os; >> if (o...
2020 Jul 22
2
How to debug a missing symbol with ThinLTO?
Hello, I am building libogg with clang (10.0.1) on macOS and if I pass "-flto=thin" to C and LDFLAGS it will not link correctly claiming missing symbols when linking to the archive (libogg.a). undef: _ogg_stream_init Undefined symbols for architecture x86_64: "_ogg_stream_init", referenced from: _main in lto.o Removing lto=thin fixes the problem. Inspecting the AR libs with
2020 Jul 23
2
How to debug a missing symbol with ThinLTO?
...atforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk >>> >>> untar libogg >>> AR=llvm-ar CC=clang CXX=clang++ CFLAGS="-flto=thin >>> -mmacosx-version-min=10.9" LDFLAGS=-flto=thin ./configure >>> --disable-shared --enable-static >>> make -j20 >>> >>> Then try to link to the library in a small C++ program - I used this: >>> >>> #include <iostream> >>> #include "ogg/ogg.h" >>> >>> using namespace std; >>> >>> int main() >>> { >...
2017 Nov 22
3
[nbdkit PATCH 0/2] more nbd tweaks
I tried reproducing the testsuite failure on test-parallel-*.sh using the same machine Rich posted a log from, but did not quickly hit it on a loop of make -j20 check TESTS=test-parallel-{file,nbd}.sh But I still think this series can't hurt. Eric Blake (2): nbd: Don't advertise writes if nbdkit is readonly tests: Make parallel tests more robust plugins/nbd/nbd.c | 2 ++ tests/test-parallel-file.sh | 30 +++++++++++++++------------...