当前位置:首页>Linux>delphi跨平台Linux,MacOS 回忆录

delphi跨平台Linux,MacOS 回忆录

  • 2026-06-29 21:54:33
delphi跨平台Linux,MacOS 回忆录
这是一篇使用delphi做跨PC平台(其实包括 Linux 和 MacOS)的实践记录
一、开发Linux 

注意,如果是虚拟机,要先安装 VMware Tools 

最新 Debian 安装 VMware Tools 时 出现错误 root 账号,也要加上 sudo ./程序,如上图

打开 delphi 安装目录\Studio\20.0\PAServer 下的LinuxPAServer20.0.tar.gz 文件 放Linu下 ,解压 如下图

./XXXXX

运行

选择linux编译     另开一终端,查看IP地址,用ip a 查看

输入IP、端口、密码

端口在linux解压出的paserver.config 里有配置

编译

如果出现以下错误

[DCC ErrorE2597 C:\A\d10.3.2\Studio\20.0\bin\ld-linux.exe: error: cannot find -lgcc_s  C:\A\d10.3.2\Studio\20.0\bin\ld-linux.exe: error: cannot find -lc  C:\A\d10.3.2\Studio\20.0\bin\ld-linux.exe: error: cannot find -ldl  C:\A\d10.3.2\Studio\20.0\bin\ld-linux.exe: error: cannot find -lpthread  C:\A\d10.3.2\Studio\20.0\bin\ld-linux.exe: error: cannot find -lm  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::__malloc(NativeUInt): error: undefined reference to 'malloc'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::__free(void*): error: undefined reference to 'free'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::pthread_once(int&, void (*)()): error: undefined reference to 'pthread_once'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::pthread_key_create(unsigned int&, void (*)(void*)): error: undefined reference to 'pthread_key_create'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::dladdr(NativeUInt, dl_info&): error: undefined reference to 'dladdr'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::dlopen(char*, int): error: undefined reference to 'dlopen'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::dlclose(NativeUInt): error: undefined reference to 'dlclose'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::dlsym(NativeUInt, char*): error: undefined reference to 'dlsym'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::TlsGetValue(unsigned int): error: undefined reference to 'pthread_getspecific'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::TlsSetValue(unsigned int, void*): error: undefined reference to 'pthread_setspecific'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\SysInit.o:SysInit:function Sysinit::__dbk_fcall_wrapper(): error: undefined reference to '_Unwind_Resume'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::TObject::TObject(): error: undefined reference to '_Unwind_Resume'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::TObject::ClassNameIs(System::UnicodeString): error: undefined reference to '_Unwind_Resume'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::TObject::QualifiedClassName(): error: undefined reference to '_Unwind_Resume'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::getenv(char*): error: undefined reference to 'getenv'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::__malloc(NativeUInt): error: undefined reference to 'malloc'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::calloc(NativeUIntNativeUInt): error: undefined reference to 'calloc'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::realloc(void*, NativeUInt): error: undefined reference to 'realloc'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::__free(void*): error: undefined reference to 'free'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::__exit(int): error: undefined reference to 'exit'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::memmove(void*, void const*, NativeUInt): error: undefined reference to 'memmove'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::memset(void*, int, NativeUInt): error: undefined reference to 'memset'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::strlen(char*): error: undefined reference to 'strlen'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::__raise(int): error: undefined reference to 'raise'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::pthread_self(): error: undefined reference to 'pthread_self'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::sched_yield(): error: undefined reference to 'sched_yield'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::dladdr(NativeUInt, dl_info&): error: undefined reference to 'dladdr'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::dlopen(char*, int): error: undefined reference to 'dlopen'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::dlclose(NativeUInt): error: undefined reference to 'dlclose'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::dlsym(NativeUInt, char*): error: undefined reference to 'dlsym'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::dlerror(): error: undefined reference to 'dlerror'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::open(char*, int): error: undefined reference to 'open'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::__chdir(char*): error: undefined reference to 'chdir'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::__close(int): error: undefined reference to 'close'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::fchdir(int): error: undefined reference to 'fchdir'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::ftruncate(int, long): error: undefined reference to 'ftruncate'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::getcwd(char*, NativeUInt): error: undefined reference to 'getcwd'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::lseek(int, long, int): error: undefined reference to 'lseek'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::__read(int, void*, NativeUInt): error: undefined reference to 'read'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::readlink(char*, char*, NativeUInt): error: undefined reference to 'readlink'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::sysconf(int): error: undefined reference to 'sysconf'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::usleep(unsigned int): error: undefined reference to 'usleep'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::__write(int, void*, NativeUInt): error: undefined reference to 'write'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::iconv(void*, char**, NativeUInt*, char**, NativeUInt*): error: undefined reference to 'iconv'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::iconv_open(char*, char*): error: undefined reference to 'iconv_open'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::iconv_close(void*): error: undefined reference to 'iconv_close'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::stat(char*, _stat&): error: undefined reference to 'stat'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::mmap(void*, NativeUInt, int, int, int, long): error: undefined reference to 'mmap'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::munmap(void*, NativeUInt): error: undefined reference to 'munmap'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::__error(): error: undefined reference to '__errno_location'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::wcscoll_l(int const*, int const*, void*): error: undefined reference to 'wcscoll_l'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::towupper_l(unsigned int, void*): error: undefined reference to 'towupper_l'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::setlocale(int, char const*): error: undefined reference to 'setlocale'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::newlocale(int, char const*, void*): error: undefined reference to 'newlocale'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::times(tms&): error: undefined reference to 'times'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::fegetexceptflag(unsigned short*, unsigned int): error: undefined reference to 'fegetexceptflag'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::fesetexceptflag(unsigned short*, unsigned int): error: undefined reference to 'fesetexceptflag'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::fegetround(): error: undefined reference to 'fegetround'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::fesetround(unsigned int): error: undefined reference to 'fesetround'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::fedisableexcept(unsigned int): error: undefined reference to 'fedisableexcept'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::libm_cosl(long double): error: undefined reference to 'cosl'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::libm_sinl(long double): error: undefined reference to 'sinl'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::libm_atanl(long double): error: undefined reference to 'atanl'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::libm_sqrtl(long double): error: undefined reference to 'sqrtl'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::llrintl(long double): error: undefined reference to 'llrintl'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::_Unwind_RaiseException(_Unwind_Exception&): error: undefined reference to '_Unwind_RaiseException'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::_Unwind_GetRegionStart(_Unwind_Context*): error: undefined reference to '_Unwind_GetRegionStart'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::_Unwind_GetLanguageSpecificData(_Unwind_Context*): error: undefined reference to '_Unwind_GetLanguageSpecificData'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::_Unwind_SetGR(_Unwind_Context*, int, NativeUInt): error: undefined reference to '_Unwind_SetGR'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::_Unwind_GetIP(_Unwind_Context*): error: undefined reference to '_Unwind_GetIP'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::_Unwind_SetIP(_Unwind_Context*, NativeUInt): error: undefined reference to '_Unwind_SetIP'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::_Halt0(): error: undefined reference to 'memcpy'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::ExitDll(System::TInitContext*): error: undefined reference to 'memcpy'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.o:System:function System::ExitDll(System::TInitContext*): error: undefined reference to 'memcpy'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Dlfcn.o:Posix.Dlfcn:function Posix::Dlfcn::dladdr(NativeUInt, dl_info&): error: undefined reference to 'dladdr'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Dlfcn.o:Posix.Dlfcn:function Posix::Dlfcn::dlopen(char*, int): error: undefined reference to 'dlopen'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Dlfcn.o:Posix.Dlfcn:function Posix::Dlfcn::dlclose(NativeUInt): error: undefined reference to 'dlclose'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Dlfcn.o:Posix.Dlfcn:function Posix::Dlfcn::dlsym(NativeUInt, char*): error: undefined reference to 'dlsym'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Fcntl.o:Posix.Fcntl:function Posix::Fcntl::__open(char*, int): error: undefined reference to 'open'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Fcntl.o:Posix.Fcntl:function Posix::Fcntl::fcntl(int, int): error: undefined reference to 'fcntl'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.SysStat.o:Posix.SysStat:function Posix::Sysstat::fstat(int, _stat&): error: undefined reference to 'fstat'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.SysStat.o:Posix.SysStat:function Posix::Sysstat::lstat(char*, _stat&): error: undefined reference to 'lstat'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.SysStat.o:Posix.SysStat:function Posix::Sysstat::stat(char*, _stat&): error: undefined reference to 'stat'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Signal.o:Posix.Signal:function Posix::Signal::sigaction(int, sigaction_t*, sigaction_t*): error: undefined reference to 'sigaction'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Signal.o:Posix.Signal:function Posix::Signal::sigaddset(sigset_t&, int): error: undefined reference to 'sigaddset'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Signal.o:Posix.Signal:function Posix::Signal::kill(int, int): error: undefined reference to 'kill'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Time.o:Posix.Time:function Posix::Time::clock_gettime(int, timespec*): error: undefined reference to 'clock_gettime'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Time.o:Posix.Time:function Posix::Time::localtime_r(long&, tm&): error: undefined reference to 'localtime_r'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.SysTime.o:Posix.SysTime:function Posix::Systime::gettimeofday(timeval&, void*): error: undefined reference to 'gettimeofday'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Locale.o:Posix.Locale:function Posix::Locale::localeconv(): error: undefined reference to 'localeconv'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Locale.o:Posix.Locale:function Posix::Locale::newlocale(int, char const*, void*): error: undefined reference to 'newlocale'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Locale.o:Posix.Locale:function Posix::Locale::freelocale(void*): error: undefined reference to 'freelocale'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Locale.o:Posix.Locale:function Posix::Locale::duplocale(void*): error: undefined reference to 'duplocale'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Locale.o:Posix.Locale:function Posix::Locale::uselocale(void*): error: undefined reference to 'uselocale'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Iconv.o:Posix.Iconv:function Posix::Iconv::iconv_open(char*, char*): error: undefined reference to 'iconv_open'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Iconv.o:Posix.Iconv:function Posix::Iconv::iconv_close(void*): error: undefined reference to 'iconv_close'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Dirent.o:Posix.Dirent:function Posix::Dirent::closedir(__dirstream*): error: undefined reference to 'closedir'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Dirent.o:Posix.Dirent:function Posix::Dirent::opendir(char*): error: undefined reference to 'opendir'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Dirent.o:Posix.Dirent:function Posix::Dirent::readdir_r(__dirstream*, dirent*, dirent*&): error: undefined reference to 'readdir_r'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Errno.o:Posix.Errno:function Posix::Errno::__error(): error: undefined reference to '__errno_location'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Fnmatch.o:Posix.Fnmatch:function Posix::Fnmatch::fnmatch(char*, char*, int): error: undefined reference to 'fnmatch'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Langinfo.o:Posix.Langinfo:function Posix::Langinfo::nl_langinfo(int): error: undefined reference to 'nl_langinfo'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Langinfo.o:Posix.Langinfo:function Posix::Langinfo::nl_langinfo_l(int, void*): error: undefined reference to 'nl_langinfo_l'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Pthread.o:Posix.Pthread:function Posix::Pthread::GetCurrentThreadID(): error: undefined reference to 'pthread_self'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Stdlib.o:Posix.Stdlib:function Posix::Stdlib::getenv(char*): error: undefined reference to 'getenv'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.String_.o:Posix.String_:function Posix::String_::memcmp(void const*, void const*, NativeUInt): error: undefined reference to 'memcmp'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.String_.o:Posix.String_:function Posix::String_::strcmp(char*, char*): error: undefined reference to 'strcmp'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.String_.o:Posix.String_:function Posix::String_::strerror_r(int, char*, NativeUInt): error: undefined reference to 'strerror_r'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Unistd.o:Posix.Unistd:function Posix::Unistd::euidaccess(char*, int): error: undefined reference to 'access'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Unistd.o:Posix.Unistd:function Posix::Unistd::__close(int): error: undefined reference to 'close'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Unistd.o:Posix.Unistd:function Posix::Unistd::getpid(): error: undefined reference to 'getpid'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Unistd.o:Posix.Unistd:function Posix::Unistd::__read(int, void*, NativeUInt): error: undefined reference to 'read'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Unistd.o:Posix.Unistd:function Posix::Unistd::__write(int, void*, NativeUInt): error: undefined reference to 'write'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Semaphore.o:Posix.Semaphore:function Posix::Semaphore::sem_destroy(sem_t&): error: undefined reference to 'sem_destroy'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Semaphore.o:Posix.Semaphore:function Posix::Semaphore::sem_getvalue(sem_t&, int&): error: undefined reference to 'sem_getvalue'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Semaphore.o:Posix.Semaphore:function Posix::Semaphore::sem_init(sem_t&, int, unsigned int): error: undefined reference to 'sem_init'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Semaphore.o:Posix.Semaphore:function Posix::Semaphore::sem_post(sem_t&): error: undefined reference to 'sem_post'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Semaphore.o:Posix.Semaphore:function Posix::Semaphore::sem_trywait(sem_t&): error: undefined reference to 'sem_trywait'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Semaphore.o:Posix.Semaphore:function Posix::Semaphore::sem_wait(sem_t&): error: undefined reference to 'sem_wait'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Semaphore.o:Posix.Semaphore:function Posix::Semaphore::sem_timedwait(sem_t&, timespec&): error: undefined reference to 'sem_timedwait'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.SysUtsname.o:Posix.SysUtsname:function Posix::Sysutsname::uname(utsname&): error: undefined reference to 'uname'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Wchar.o:Posix.Wchar:function Posix::Wchar::wcscoll_l(int const*, int const*, void*): error: undefined reference to 'wcscoll_l'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Wchar.o:Posix.Wchar:function Posix::Wchar::wcscasecmp_l(int const*, int const*, void*): error: undefined reference to 'wcscasecmp_l'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Wctype.o:Posix.Wctype:function Posix::Wctype::towupper(unsigned int): error: undefined reference to 'towupper'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Wctype.o:Posix.Wctype:function Posix::Wctype::towlower_l(unsigned int, void*): error: undefined reference to 'towlower_l'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\Posix.Wctype.o:Posix.Wctype:function Posix::Wctype::towupper_l(unsigned int, void*): error: undefined reference to 'towupper_l'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.Internal.ExcUtils.o:System.Internal.ExcUtils:function System::Internal::Excutils::TlsGetValue(int): error: undefined reference to 'pthread_getspecific'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.SysUtils.o:System.SysUtils:function System::Sysutils::TFormatSettings::Create(System::UnicodeString): error: undefined reference to 'memset'  c:\a\d10.3.2\studio\20.0\lib\Linux64\release\System.SysUtils.o:System.SysUtils:function System::Sysutils::TFormatSettings::Create(System::UnicodeString): error: undefined reference to 'memset'

在linux系统上安装 gcc

转到Root用户:su root 

运行: sudo apt install gcc

运行:sudo apt-get install joe wget p7zip-full curl build-essential zlib1g-dev libcurl4-gnutls-dev

然后编译

如果有以下错误

>/home/zjp/my/PAServer-20.0/linuxgdb: error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory

运行:sudo apt-get install joe wget p7zip-full curl build-essential zlib1g-dev libcurl4-gnutls-dev libncurses5

F9 运行,

如果没有报错,则安环境搭建成功

查看Linux下的程序目录

它是根据配置文件paserver.config 设置的

图形化控件的使用:

解压:FmxLinux 1.41 Src

添加插件和路径:

HKEY_CURRENT_USER\Software\Embarcadero\BDS\20.0\Experts

添加新建->字符串值

FmxLinuxXXXXX\Bin\20.0\FmuxLib.dll

然后添加Linux的编译,注意是在工程顶层右键

添加路径到delphi

在工程上(注意是工程),会多一个编译平台

直接F9编译,会发现Linux系统下,已经运行

Delphi 

编译出的程序在当前程下

把此程序,直接复制到放到linux下,也可以运行

IP变化时,重复操作一次

如果编译没有错,F9运行

此处开发Linux就全部搭建完成 

以下是搭建过程可能遇到的错误记录

Error: E0003 TDBXError: Remote error: Authentication manager rejected user credentials. This may due to invalid combination of DS user name and password

转到root 权限用户 ,在启动paserver 程序如果出现以下错误[DCC ErrorE2597 C:\Program Files (x86)\Embarcadero\20.0\bin\ld-linux.exe: error: cannot find -lcurl  C:\Program Files (x86)\Embarcadero\20.0\bin\ld-linux.exe: error: cannot find -lz  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_global_init(int): error: undefined reference to 'curl_global_init'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_global_cleanup(): error: undefined reference to 'curl_global_cleanup'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_slist_append(curl_slist*, char*): error: undefined reference to 'curl_slist_append'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_slist_free_all(curl_slist*): error: undefined reference to 'curl_slist_free_all'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_easy_strerror(CURLcode): error: undefined reference to 'curl_easy_strerror'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_easy_init(): error: undefined reference to 'curl_easy_init'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_easy_setopt(void*, CURLoption): error: undefined reference to 'curl_easy_setopt'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_easy_perform(void*): error: undefined reference to 'curl_easy_perform'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_easy_cleanup(void*): error: undefined reference to 'curl_easy_cleanup'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\Linuxapi.Curl.o:Linuxapi.Curl:function Linuxapi::Curl::curl_easy_getinfo(void*, CURLINFO): error: undefined reference to 'curl_easy_getinfo'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\System.ZLib.o:System.ZLib:function System::Zlib::deflate(System::Zlib::z_stream&, int): error: undefined reference to 'deflate'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\System.ZLib.o:System.ZLib:function System::Zlib::deflateEnd(System::Zlib::z_stream&): error: undefined reference to 'deflateEnd'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\System.ZLib.o:System.ZLib:function System::Zlib::inflate(System::Zlib::z_stream&, int): error: undefined reference to 'inflate'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\System.ZLib.o:System.ZLib:function System::Zlib::inflateEnd(System::Zlib::z_stream&): error: undefined reference to 'inflateEnd'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\System.ZLib.o:System.ZLib:function System::Zlib::inflateReset(System::Zlib::z_stream&): error: undefined reference to 'inflateReset'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\System.ZLib.o:System.ZLib:function System::Zlib::deflateInit2_(System::Zlib::z_stream&, int, int, int, int, int, char*, int): error: undefined reference to 'deflateInit2_'  c:\program files (x86)\embarcadero\20.0\lib\Linux64\release\System.ZLib.o:System.ZLib:function System::Zlib::inflateInit2_(System::Zlib::z_stream&, int, char*, int): error: undefined reference to 'inflateInit2_'执行:sudo apt-get install joe wget p7zip-full curl build-essential zlib1g-dev libcurl4-gnutls-dev或:yum install joe wget p7zip-full curl build-essential zlib1g-dev libcurl4-gnutls-devyum install zlib-develyum install gcc gcc-c++yum install libcurlyum install libcurl-devel 
二、开发Mac平台程序 

本人没有平果机,所以只能搭建虚拟机,因为Delphi fmx 本身支持mac,所以MacOS系统安装步骤比delphi环境搭建还多,如果你有真机,可以跳过虚拟机安装的部分,直接拉到下面看

安装好虚拟机软件,然后去下  unlocker

https://github.com/DrDonk/unlocker

然后开干

注意:如果提示镜像过期、出现问题啥的,说明你的镜像不完整,请更换或者重新制作镜像!

查看是否64位系统

查看ipifconfig en0

然后64位,失败

转向32位编译

程序位置

如果要编译64位,要做如下操作

至此,delphi 开发跨Linux , MacOS 平台,已全部搭建完全
三、我用 Lazarus 过后,在也不想用Delphi开发跨PC平台了,Lazarus跨平台https://mp.weixin.qq.com/s/mMA6psROF1LGziOCZzFiOg  真好用。delphi 还是适合win平台开发

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-07-03 17:59:25 HTTP/2.0 GET : https://f.mffb.com.cn/a/491436.html
  2. 运行时间 : 0.208116s [ 吞吐率:4.81req/s ] 内存消耗:4,788.59kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=0525764ea27f5cdc8cc02a0821a4fb6e
  1. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/runtime/temp/067d451b9a0c665040f3f1bdd3293d68.php ( 11.98 KB )
  140. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000374s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000596s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000965s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.019968s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000697s ]
  6. SELECT * FROM `set` [ RunTime:0.004018s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000602s ]
  8. SELECT * FROM `article` WHERE `id` = 491436 LIMIT 1 [ RunTime:0.007357s ]
  9. UPDATE `article` SET `lasttime` = 1783072765 WHERE `id` = 491436 [ RunTime:0.011617s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 67 LIMIT 1 [ RunTime:0.007790s ]
  11. SELECT * FROM `article` WHERE `id` < 491436 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000747s ]
  12. SELECT * FROM `article` WHERE `id` > 491436 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.007460s ]
  13. SELECT * FROM `article` WHERE `id` < 491436 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.016705s ]
  14. SELECT * FROM `article` WHERE `id` < 491436 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.032552s ]
  15. SELECT * FROM `article` WHERE `id` < 491436 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.024241s ]
0.209697s