最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

ruby - tebako builds an executable without error but executable simply flashes screen without exeucting code (console output and

programmeradmin2浏览0评论

Have following small ruby file main.rb as input to tebako

fw = File.open("tebako1.txt", "w")
5.times{ fw.write("a line of data/n") }
fw.close

var = ' --> appended'
puts "Enter a word on console"
line = gets.chomp
puts line + var
fw = File.open("tebako2.txt", "w")
5.times{ fw.write("End of program/n") }
fw.close

Used following input to run

ridk enable ucrt64
tebako press --entry-point main.rb  --root C:\TEBAKO\source --Ruby 3.2.7 --output C:\TEBAKO\exe_out\runme

An executable is produced (first 2 char are MK)

This is the console log:

C:\Users\donno>tebako press --entry-point main.rb  --root C:\TEBAKO\source --Ruby 3.2.7 --output C:\TEBAKO\exe_out\runme
Tebako executable packager version 0.12.16
Using TEBAKO_PREFIX environment variable as prefix
-- Found Gemfile with Ruby requirements ["3.2.7"]
Running tebako press at C:/TEBAKO
   Mode:                      'bundle'
   Ruby version:              '3.2.7'
   Project root:              'C:/TEBAKO/source/'
   Application entry point:   'main.rb'
   Package file name:         'C:/TEBAKO/exe_out/runme'
   Loging level:              'error'
   Package working directory: '<Host current directory>'
-- Generating files
   ... tebako-version.h
   ... tebako-fs.cpp
   ... deploy.rb
-- Using gnu bash at C:\Ruby32-x64\msys64\usr\bin\bash.exe
-- Running tebako press script
Running tebako press script
-- OSTYPE: 'msys'
-- NCORES: 12
Configuration summary:
-- ruby: v3.2.7 at C:/TEBAKO/deps/src/_ruby_3.2.7
-- dwarfs with tebako wrapper: @v0.9.7 at C:/TEBAKO/deps/src/_dwarfs_wr
-- DATA_SRC_DIR: C:/TEBAKO/o/s
-- DATA_PRE_DIR: C:/TEBAKO/o/r
-- DATA_BIN_DIR: C:/TEBAKO/o/p
-- DATA_BIN_FILE: C:/TEBAKO/o/p/fs.bin
-- Target binary directory: C:/TEBAKO/o/s/bin
-- Target library directory: C:/TEBAKO/o/s/lib
-- Target local directory: C:/TEBAKO/o/s/local
-- Target Gem directory: C:/TEBAKO/o/s/lib/ruby/gems/3.2.0
-- FS_MOUNT_POINT: A:/__tebako_memfs__
-- Building for Win32 Ruby (RB_W32): ON
-- Removing GLIBC_PRIVATE reference: OFF
-- Not building Ruby extensions: dbm,syslog,pty,gdbm,readline,-test-/*
-- Ruby build cppflags='-fPIC -IC:/TEBAKO/deps/include -IC:/Ruby32-x64/lib/ruby/gems/3.2.0/gems/tebako-0.12.16/include -DRB_W32=1'
-- Ruby build LDFLAGS='-LC:/TEBAKO/deps/lib -LC:/TEBAKO/o -l:libstdc++.a -LC:/TEBAKO/o/s/lib'
-- openssl Ruby option=''
-- libyaml Ruby option=''
-- Configuring done (0.9s)
-- Generating done (0.0s)
-- Build files have been written to: C:/TEBAKO/o
[ 42%] Built target _dwarfs_wr
[ 84%] Built target _ruby_3.2.7
Tebako setup has been verified
[ 84%] Built target setup
-- Running init script
   ... creating packaging environment at C:/TEBAKO/o/s
   ... creating Windows def file
   ... creating Windows import library
   ... @ dlltool -d C:/TEBAKO/deps/src/_ruby_3.2.7/runme.def -D runme.exe --output-lib C:/TEBAKO/o/s/lib/libx64-ucrt-ruby320.a
-- Running deploy script
   ... using lockfile at C:/TEBAKO/source/Gemfile.lock
   ... installing tebako-runtime gem
   ... @ C:/TEBAKO/o/s/bin/gem.cmd install tebako-runtime --no-document --install-dir C:/TEBAKO/o/s/lib/ruby/gems/3.2.0 --bindir C:/TEBAKO/o/s/bin
   ... installing bundler gem version 2.6.6
   ... @ C:/TEBAKO/o/s/bin/gem.cmd install bundler -v 2.6.6 --no-document --install-dir C:/TEBAKO/o/s/lib/ruby/gems/3.2.0 --bindir C:/TEBAKO/o/s/bin
   ... deploying Gemfile
   ... @ C:/TEBAKO/o/s/bin/bundle.bat _2.6.6_ config set --local build.ffi --disable-system-libffi
   ... @ C:/TEBAKO/o/s/bin/bundle.bat _2.6.6_ config set --local build.nokogiri --use-system-libraries
   ... @ C:/TEBAKO/o/s/bin/bundle.bat _2.6.6_ config set --local force_ruby_platform true
   *** It may take a long time for a big project. It takes REALLY long time on Windows ***
   ... @ C:/TEBAKO/o/s/bin/bundle.bat _2.6.6_ install --jobs=12
   ... target entry point will be at A:/__tebako_memfs__/local/main.rb
   ... stripping the output
-- Running mkdwarfs script
   ... @ C:/TEBAKO/deps/bin/mkdwarfs -o C:/TEBAKO/o/p/fs.bin -i C:/TEBAKO/o/s --no-progress
[ 84%] Built target packaged_filesystem
[ 89%] Building CXX object CMakeFiles/tebako-fs.dir/src/tebako-main.cpp.obj
[ 94%] Building CXX object CMakeFiles/tebako-fs.dir/C_/TEBAKO/deps/src/tebako/tebako-fs.cpp.obj
[100%] Linking CXX static library libtebako-fs.a
[100%] Built target tebako-fs
[100%] Built target tebako
-- Running finalize script
   ... building tebako package
   ... @ make ruby -j12
   ... @ make -j12
Created tebako package at "C:/TEBAKO/exe_out/runme.exe"

When executable is run from tebako/exe_out following error

C:\TEBAKO\exe_out>runme.exe
runme.exe: No such file or directory -- A:/__tebako_memfs__/local/main.rb (LoadError)

If run from explorer screen flashes once and terminates

There is no console activity and no files are created

This appears to work (code generated is correct)

C:\TEBAKO\exe_out>runme --tebako-extract
Extracting tebako image to 'source_filesystem'
'tebako-runtime' was not loaded.

Have tried multiple examples without success - sure I am missing something simple

Tried adapting several on line examples without success but may be missing what trebako runtime is

I have RESOLVED the problem will update with complete instructions after I have fixed issues still bothering me

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论