mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
Fixed build script to work on x86_64 Linux. Thanks to Christian Blichmann for the patch!
This commit is contained in:
parent
8f69725171
commit
f9f30154d2
6
build.py
6
build.py
@ -209,8 +209,8 @@ class GCCBuilder(BuilderBase):
|
|||||||
self.compiler_parameters = "-fpermissive"
|
self.compiler_parameters = "-fpermissive"
|
||||||
self.linker_parameters = "-shared"
|
self.linker_parameters = "-shared"
|
||||||
self.basemacros = [ ]
|
self.basemacros = [ ]
|
||||||
self.compiler = "g++"
|
self.compiler = "g++ -m32"
|
||||||
self.linker = "g++"
|
self.linker = "g++ -m32"
|
||||||
self.source_extension = ".cpp"
|
self.source_extension = ".cpp"
|
||||||
self.object_extension = ".o"
|
self.object_extension = ".o"
|
||||||
|
|
||||||
@ -305,7 +305,7 @@ def build_plugin(system, idasdkdir):
|
|||||||
python_library = "-lpython%d.%d" % (PYTHON_MAJOR_VERSION, PYTHON_MINOR_VERSION)
|
python_library = "-lpython%d.%d" % (PYTHON_MAJOR_VERSION, PYTHON_MINOR_VERSION)
|
||||||
ida_libpath = idasdkdir + os.sep + "libgcc32.lnx"
|
ida_libpath = idasdkdir + os.sep + "libgcc32.lnx"
|
||||||
ida_lib = ""
|
ida_lib = ""
|
||||||
extra_link_parameters = "/usr/lib/python%s.%s/lib-dynload/*.so" % (PYTHON_MAJOR_VERSION, PYTHON_MINOR_VERSION)
|
extra_link_parameters = "%s/python%s.%s/lib-dynload/*.so" % (python_libpath, PYTHON_MAJOR_VERSION, PYTHON_MINOR_VERSION)
|
||||||
|
|
||||||
# Platform-specific settings for the Windows build
|
# Platform-specific settings for the Windows build
|
||||||
if system == "Windows":
|
if system == "Windows":
|
||||||
|
Loading…
Reference in New Issue
Block a user