- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
版本:macOS 10.14.4
, Apple LLVM version 10.0.1 (clang-1001.0.46.4)
.
我从 GitHub 克隆了 CPython 源代码,然后对其进行了编译,它曾经运行良好。但是,几天前我为了安装 gdb 搞砸了我的终端。现在,当我尝试使用 ./configure --with-pydebug && make -j
编译 CPython 源代码时我总是收到错误消息:
ld: warning: ld: warning: ignoring file libpython3.8d.a, file was built for archive which is not the architecture being linked (x86_64): libpython3.8d.aignoring file libpython3.8d.a, file was built for archive which is not the architecture being linked (x86_64): libpython3.8d.a
Undefined symbols for architecture x86_64:
"__Py_UnixMain", referenced from:
_main in python.o
ld: symbol(s) not found for architecture x86_64
Undefined symbols for architecture x86_64:
"_PyEval_InitThreads", referenced from:
_test_repeated_init_and_subinterpreters in _testembed.o
"_PyEval_ReleaseThread", referenced from:
_test_repeated_init_and_subinterpreters in _testembed.o
"_PyEval_RestoreThread", referenced from:
_test_repeated_init_and_subinterpreters in _testembed.o
_test_bpo20891 in _testembed.o
"_PyEval_SaveThread", referenced from:
_test_bpo20891 in _testembed.o
"_PyGILState_Check", referenced from:
_bpo20891_thread in _testembed.o
"_PyGILState_Ensure", referenced from:
_test_repeated_init_and_subinterpreters in _testembed.o
_bpo20891_thread in _testembed.o
"_PyGILState_Release", referenced from:
_test_repeated_init_and_subinterpreters in _testembed.o
_bpo20891_thread in _testembed.o
"_PyInterpreterState_GetID", referenced from:
_print_subinterp in _testembed.o
"_PyMem_RawFree", referenced from:
_test_pre_initialization_api in _testembed.o
"_PyRun_SimpleStringFlags", referenced from:
_test_pre_initialization_api in _testembed.o
_test_pre_initialization_sys_options in _testembed.o
_test_init_main in _testembed.o
_check_stdio_details in _testembed.o
_print_subinterp in _testembed.o
_dump_config in _testembed.o
"_PySys_AddWarnOption", referenced from:
_test_pre_initialization_sys_options in _testembed.o
"_PySys_AddXOption", referenced from:
_test_pre_initialization_sys_options in _testembed.o
"_PySys_ResetWarnOptions", referenced from:
_test_pre_initialization_sys_options in _testembed.o
"_PyThreadState_Get", referenced from:
_test_repeated_init_and_subinterpreters in _testembed.o
_print_subinterp in _testembed.o
"_PyThreadState_Swap", referenced from:
_test_repeated_init_and_subinterpreters in _testembed.o
"_PyThread_acquire_lock", referenced from:
_test_bpo20891 in _testembed.o
"_PyThread_allocate_lock", referenced from:
_test_bpo20891 in _testembed.o
"_PyThread_exit_thread", referenced from:
_bpo20891_thread in _testembed.o
"_PyThread_free_lock", referenced from:
_test_bpo20891 in _testembed.o
"_PyThread_release_lock", referenced from:
_bpo20891_thread in _testembed.o
"_PyThread_start_new_thread", referenced from:
_test_bpo20891 in _testembed.o
"_Py_BytesWarningFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
"_Py_DebugFlag", referenced from:
_set_all_global_config_variables in _testembed.o
"_Py_DecodeLocale", referenced from:
_test_pre_initialization_api in _testembed.o
"_Py_DontWriteBytecodeFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
_check_init_python_config in _testembed.o
"_Py_EndInterpreter", referenced from:
_test_repeated_init_and_subinterpreters in _testembed.o
"_Py_Finalize", referenced from:
_test_forced_io_encoding in _testembed.o
_test_repeated_init_and_subinterpreters in _testembed.o
_test_pre_initialization_api in _testembed.o
_test_pre_initialization_sys_options in _testembed.o
_test_initialize_twice in _testembed.o
_test_initialize_pymain in _testembed.o
_test_init_default_config in _testembed.o
...
"_Py_FrozenFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
_check_init_python_config in _testembed.o
"_Py_IgnoreEnvironmentFlag", referenced from:
_test_init_env in _testembed.o
_test_init_env_dev_mode in _testembed.o
_test_init_env_dev_mode_alloc in _testembed.o
_set_all_global_config_variables in _testembed.o
_check_init_python_config in _testembed.o
"_Py_Initialize", referenced from:
_test_forced_io_encoding in _testembed.o
_test_pre_initialization_api in _testembed.o
_test_initialize_twice in _testembed.o
_test_init_global_config in _testembed.o
__testembed_Py_Initialize in _testembed.o
"_Py_InspectFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
"_Py_InteractiveFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
"_Py_IsolatedFlag", referenced from:
_test_init_isolated_flag in _testembed.o
_test_preinit_isolated2 in _testembed.o
_set_all_global_config_variables in _testembed.o
_check_init_python_config in _testembed.o
"_Py_Main", referenced from:
_test_initialize_pymain in _testembed.o
"_Py_NewInterpreter", referenced from:
_test_repeated_init_and_subinterpreters in _testembed.o
"_Py_NoSiteFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
_check_init_python_config in _testembed.o
"_Py_NoUserSiteDirectory", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
_check_init_python_config in _testembed.o
"_Py_OptimizeFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
"_Py_QuietFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
"_Py_SetProgramName", referenced from:
_test_pre_initialization_api in _testembed.o
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
__testembed_Py_Initialize in _testembed.o
"_Py_SetStandardStreamEncoding", referenced from:
_test_forced_io_encoding in _testembed.o
_test_init_from_config in _testembed.o
_check_stdio_details in _testembed.o
"_Py_UTF8Mode", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
"_Py_UnbufferedStdioFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
_check_init_python_config in _testembed.o
"_Py_VerboseFlag", referenced from:
_test_init_global_config in _testembed.o
_test_init_from_config in _testembed.o
_set_all_global_config_variables in _testembed.o
"__PyCoreConfig_Clear", referenced from:
_test_preinit_parse_argv in _testembed.o
_test_preinit_dont_parse_argv in _testembed.o
_test_init_read_set in _testembed.o
_test_run_main in _testembed.o
"__PyCoreConfig_DecodeLocale", referenced from:
_test_init_read_set in _testembed.o
"__PyCoreConfig_Init", referenced from:
_test_init_from_config in _testembed.o
_test_preinit_isolated1 in _testembed.o
_test_preinit_isolated2 in _testembed.o
"__PyCoreConfig_InitIsolatedConfig", referenced from:
_test_preinit_dont_parse_argv in _testembed.o
_check_preinit_isolated_config in _testembed.o
"__PyCoreConfig_InitPythonConfig", referenced from:
_test_init_dont_configure_locale in _testembed.o
_test_init_dev_mode in _testembed.o
_test_init_isolated_flag in _testembed.o
_test_preinit_parse_argv in _testembed.o
_test_init_read_set in _testembed.o
_test_init_run_main in _testembed.o
_test_init_main in _testembed.o
...
"__PyCoreConfig_Read", referenced from:
_test_init_read_set in _testembed.o
"__PyCoreConfig_SetString", referenced from:
_test_preinit_parse_argv in _testembed.o
_test_preinit_dont_parse_argv in _testembed.o
_test_init_read_set in _testembed.o
_test_run_main in _testembed.o
"__PyCoreConfig_SetWideArgv", referenced from:
_test_preinit_parse_argv in _testembed.o
_test_preinit_dont_parse_argv in _testembed.o
_test_run_main in _testembed.o
"__PyInitError_Failed", referenced from:
_test_init_from_config in _testembed.o
_test_init_dont_configure_locale in _testembed.o
_test_init_dev_mode in _testembed.o
_test_init_isolated_flag in _testembed.o
_test_preinit_isolated1 in _testembed.o
_test_preinit_isolated2 in _testembed.o
_test_preinit_parse_argv in _testembed.o
...
"__PyInitError_NoMemory", referenced from:
_test_init_read_set in _testembed.o
"__PyPreConfig_Init", referenced from:
_test_init_from_config in _testembed.o
_test_preinit_isolated1 in _testembed.o
_test_preinit_isolated2 in _testembed.o
"__PyPreConfig_InitIsolatedConfig", referenced from:
_test_preinit_dont_parse_argv in _testembed.o
_check_preinit_isolated_config in _testembed.o
"__PyPreConfig_InitPythonConfig", referenced from:
_test_init_dont_configure_locale in _testembed.o
_check_init_python_config in _testembed.o
"__PyRuntime", referenced from:
_check_preinit_isolated_config in _testembed.o
"__PyWstrList_Append", referenced from:
_test_init_read_set in _testembed.o
"__Py_ExitInitError", referenced from:
_test_init_from_config in _testembed.o
_test_init_dont_configure_locale in _testembed.o
_test_init_dev_mode in _testembed.o
_test_init_isolated_flag in _testembed.o
_test_preinit_isolated1 in _testembed.o
_test_preinit_isolated2 in _testembed.o
_test_preinit_parse_argv in _testembed.o
...
"__Py_InitializeFromConfig", referenced from:
_test_init_from_config in _testembed.o
_test_init_dont_configure_locale in _testembed.o
_test_init_dev_mode in _testembed.o
_test_init_isolated_flag in _testembed.o
_test_preinit_isolated1 in _testembed.o
_test_preinit_isolated2 in _testembed.o
_test_preinit_parse_argv in _testembed.o
...
"__Py_InitializeMain", referenced from:
_test_init_main in _testembed.o
"__Py_PreInitialize", referenced from:
_test_init_from_config in _testembed.o
_test_init_dont_configure_locale in _testembed.o
_test_preinit_isolated1 in _testembed.o
_test_preinit_isolated2 in _testembed.o
_check_preinit_isolated_config in _testembed.o
_check_init_python_config in _testembed.o
"__Py_PreInitializeFromWideArgs", referenced from:
_test_preinit_dont_parse_argv in _testembed.o
"__Py_RunMain", referenced from:
_test_init_run_main in _testembed.o
_test_init_main in _testembed.o
_test_run_main in _testembed.o
ld: symbol(s) not found for architecture x86_64
clangclang: : errorerror: : linker command failed with exit code 1 (use -v to see invocation)linker command failed with exit code 1 (use -v to see invocation)
make: *** [Programs/_testembed] Error 1
make: *** Waiting for unfinished jobs....
make: *** [python.exe] Error 1
make distclean
并重置我的终端但仍然无法正常工作。谢谢你的帮忙。
最佳答案
感谢 python-list 中的 Inada,我找到了 post about it ,由于某种原因,它看起来像 ar
和 ranlib
没有按预期工作。我为这些工具创建了一些软链接(soft link):
ln -s /usr/bin/ranlib /usr/local/bin/ranlib
ln -s /usr/bin/ar /usr/local/bin/ar
关于python - CPython 在 macOS 中编译失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56239229/
在跨平台应用程序中,我正在使用一个配置文件,允许用户根据需要覆盖各种默认值。 我的问题是...在哪里放置/查找此配置文件,尤其是关于 MacOS X(我从未使用过且无法访问)?我知道 MacOS X
由于Xcode的代码签名和存档非常耗时,枯燥且有问题,因此我一直通过自己的脚本使用命令行工具xcodebuild,codesign等对我的开发人员ID签名的macOS应用进行代码签名,存档和交付。公证
我正在寻找一种在 MacOs 应用程序中以编程方式逐帧绘制动画的方法(不是关键帧属性动画)。我尝试使用drawLayer:inContext:委托(delegate)方法绘制到CALayers,调用s
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
我在83%的安装openCV中遇到问题...我的python是2.7.3。我已经适应了xcode。我使用了这个tuturial。 我的Cmake: cmake -D CMAKE_BUILD_TYPE=
我需要弄清楚 Mac 的日志键的键码(ctrl、shift 等)或者需要知道如何跟踪这个日志按键事件... 基本上我正在将 mac key 代码转换为等效的 Windows key 代码......我
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 2年前关闭。 Improve thi
我想将一个 Rust 程序从我的 x86 Mac 交叉编译成一个可以在 Silicon Mac 上运行的二进制文件,但我无法弄清楚链接。 我有: 运行 macOS 10.15.7 Catalina 的
在 macOS ventura 中,我无法复制我的终端应用程序。 我想这样做,因为我有一个 M1 处理器,我想要一个使用 Rosetta2 打开的处理器和一个本地打开的处理器。 有什么办法解决这个问题
当您可以访问实际硬件时,在 Mac 上以安全模式启动是很容易的。您只需在启动时按住 shift 键即可。 在虚拟机中运行 macOS (OSX) 时如何启动到安全模式? 最佳答案 Schmitty 在
这个问题在这里已经有了答案: How to get Conda and Virtualenv to work on mac OS Catalina? (8 个答案) 关闭 3 年前。 我在 macO
我有一个关于 macOS 应用程序图标的问题。我以前看过很多动画图标,但从来没有真正密切关注正在发生的事情/他们是如何做的。我只是想知道是否有任何方法可以创建在停靠栏中动画的动画应用程序图标。 例如:
每当我在 vim 中输入终端命令(例如,!echo hello)时,我会立即被踢出去查看该终端命令的结果,然后提示我使用 按 ENTER 或键入命令继续。这有点刺耳。我想留在 vim 中,并在底部打印
当使用文本编辑应用程序时,选择一种字体(例如“Menlo”)来呈现字形,当所选字体不包含特殊字形(例如“𠹷”,它是一个简单的中文字形,“Menlo"不包含它), 应用程序会选择一种字体来呈现它, 在
已经有几个关于如何在 Mac 上启用虚拟化的问题(例如 How to enable support of CPU virtualization on Macbook Pro?)。经常报告 sysctl
这只是出于好奇。 Exposé 有两个功能,其中一个是重新排列桌面上的窗口,一个是显示所有打开的窗口,这样用户可以看到隐藏在其他窗口下面的窗口,另一个功能是将所有窗口移到两侧,让用户与桌面交互。 我只
我使用的是 MacOS X,我对应用程序包类型的东西还很陌生。我正在编写一个程序来打开一个窗口并注册鼠标输入——而不是一个命令行工具。当我将我的代码(用 C 编写,如果这很重要)编译成一个可执行文件(
我正在制作一个必须支持 macOS 的 Flutter 插件。但是,当我想创建一个插件并在示例应用程序中运行该插件时(即使我还没有编辑过 Flutter 生成的代码),Xcode 会抛出以下错误。 无
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我想在终端(MacOs)中像屏幕一样显示当前目录面包屑: 我该怎么做? 现在它只是一个文本...... 谢谢 最佳答案 首选项 -> 窗口 -> 检查工作目录或文档下的“路径”。 路径将作为窗口标题的
我是一名优秀的程序员,十分优秀!