Jump to content

Dibya

Member
  • Posts

    2,134
  • Joined

  • Last visited

  • Days Won

    7
  • Donations

    0.00 USD 
  • Country

    India

Posts posted by Dibya

  1. K7 Computing , very old Indian Cyber security company still actively support XP

    https://www.k7computing.com/us/home-users/total-security

    Try out the 30 days trial ,

    World Lightest Antivirus and Detection quite good

    https://www.av-test.org/en/antivirus/home-windows/windows-10/june-2022/k7-computing-total-security-16.0-221309/

    AVTest founds detection to  be world class and given Top Product batch.

    One problem it uses large neural network , so false positive is bit high [ Much better than ESET]

    UI is very simple.

    I used to use Bit-defender on XP but when support ran out i moved to K7 and super happy.

    Next time even my Windows 10 partition will get K7.

    They even proud of supporting legacy platform https://blog.k7computing.com/ransomware-protection-for-legacy-devices-in-healthcare/

    In India , industry and hospital uses XP in large number due to Legacy hardware like CNC and Xray machine.

  2. I really hate modern Visual Studio , i am including NTStatus.h , yet not accepting NTSTATUS.h

    their other problem winnt.h

    https://www.mediafire.com/file/tadhxmjsqo79xmm/Compatlib.zip/file

    I am frustrated , if someone helps to compile it i will be happy and i will be happy to learn from you if you point out my mistakes.

    It made my mind to make a external dll instead to keep it clutter free.

    @win32 It looks the same but if i add external lib to linker , still not gonna link against that ntdll_x86.lib. Visual studio became a joke.

  3. 3 hours ago, win32 said:

    The official and many of the unofficial ntdll.libs are missing certain functions like RtlGetVersion presumably because they are duplicated by kernel32 functions in practice, or possibly also because they aren't officially documented in any capacity.

    The ntdll libs in this repository contain RtlNtStatusToDosError as well as everything else: https://github.com/vxiiduu/VxKex

    How can add external lib in visual studio 2019? Question is stupid but i am not used to with newer VS , i am pretty fine with VS2010.

  4. On 9/8/2022 at 11:46 AM, jumper said:

    Check the object files to find the source of the unwanted dependencies.

    Also .cod and any other per-module output files.

     

    Thanks Jumper , i am thinking of using LibC++ of LLVM instead of microsofts CRT library , and then see what happens

    I haven't figure out how to link against LibC++ yet

  5. I moved the  project to LLVM Clang ,

    very weird scenario

    on Win32 build , Build completely fail

    Build started...
    1>------ Build started: Project: _asyncio, Configuration: Release Win32 ------
    1>Killing any running python.exe instances...
    1>Generated sources are up to date
    1>Getting build info from git
    1>'git' is not recognized as an internal or external command,
    1>operable program or batch file.
    1>C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\PCbuild\pythoncore.vcxproj(532,5): warning MSB3073: The command "git name-rev --name-only HEAD > "C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\PCbuild\obj\310win32_Release\pythoncore\gitbranch.txt"" exited with code 9009.
    1>C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\PCbuild\pythoncore.vcxproj(532,5): warning MSB4181: The "Exec" task returned false but did not log an error.
    1>'git' is not recognized as an internal or external command,
    1>operable program or batch file.
    1>C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\PCbuild\pythoncore.vcxproj(533,5): warning MSB3073: The command "git rev-parse --short HEAD > "C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\PCbuild\obj\310win32_Release\pythoncore\gitversion.txt"" exited with code 9009.
    1>C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\PCbuild\pythoncore.vcxproj(533,5): warning MSB4181: The "Exec" task returned false but did not log an error.
    1>'git' is not recognized as an internal or external command,
    1>operable program or batch file.
    1>C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\PCbuild\pythoncore.vcxproj(534,5): warning MSB3073: The command "git describe --all --always --dirty > "C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\PCbuild\obj\310win32_Release\pythoncore\gittag.txt"" exited with code 9009.
    1>C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\PCbuild\pythoncore.vcxproj(534,5): warning MSB4181: The "Exec" task returned false but did not log an error.
    1>Building :
    1>Done building project "pythoncore.vcxproj".
    1>In file included from ..\Modules\_asynciomodule.c:1:
    1>In file included from C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\Include\Python.h:118:
    1>C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\Include/cpython/pytime.h(120,59): warning : declaration of 'struct timeval' will not be visible outside of this function [-Wvisibility]
    1>C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\Include/cpython/pytime.h(127,12): warning : declaration of 'struct timeval' will not be visible outside of this function [-Wvisibility]
    1>C:\Users\Dibya\Desktop\Python-3.10.6\Python-3.10.6\Python-3.10.6\Include/cpython/pytime.h(132,12): warning : declaration of 'struct timeval' will not be visible outside of this function [-Wvisibility]
    1>lld-link : error : could not open '/CGTHREADS:1': no such file or directory
    1>lld-link : error : could not open '/PDBTHREADS:1': no such file or directory
    1>Done building project "_asyncio.vcxproj" -- FAILED.
    ========== Build: 0 succeeded, 1 failed, 43 up-to-date, 0 skipped ==========

     

     

    Edit : Made few changes , but got only one error with clang

    Build started...
    1>------ Build started: Project: pythoncore, Configuration: Release Win32 ------
    2>------ Build started: Project: pyshellext, Configuration: Release Win32 ------
    3>------ Build started: Project: liblzma, Configuration: Release Win32 ------
    4>------ Build started: Project: sqlite3, Configuration: Release Win32 ------
    5>------ Build started: Project: python3dll, Configuration: Release Win32 ------
    6>------ Build started: Project: venvlauncher, Configuration: Release Win32 ------
    7>------ Build started: Project: venvwlauncher, Configuration: Release Win32 ------
    1>Killing any running python.exe instances...
    2>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\pyshellext.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\pyshellext.exp
    2>Generating code
    3>tuklib_cpucores.c
    4>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\sqlite3.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\sqlite3.exp
    4>Generating code
    2>Finished generating code
    5>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\python3.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\python3.exp
    5>Generating code
    5>Finished generating code
    7>Generating code
    6>Generating code
    7>Finished generating code
    6>Finished generating code
    3>tuklib_physmem.c
    5>python3dll.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\python3.dll
    2>pyshellext.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\pyshellext.dll
    8>------ Build started: Project: pylauncher, Configuration: Release Win32 ------
    9>------ Build started: Project: xxlimited, Configuration: Release Win32 ------
    3>check.c
    8>Generating code
    3>crc32_fast.c
    6>venvlauncher.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\venvlauncher.exe
    7>venvwlauncher.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\venvwlauncher.exe
    9>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\xxlimited.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\xxlimited.exp
    9>Generating code
    9>Finished generating code
    8>Finished generating code
    3>crc32_table.c
    9>xxlimited.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\xxlimited.pyd
    3>crc64_fast.c
    1>Generated sources are up to date
    8>pylauncher.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\py.exe
    1>Getting build info from git
    10>------ Build started: Project: pywlauncher, Configuration: Release Win32 ------
    3>crc64_table.c
    1>'git' is not recognized as an internal or external command,
    1>operable program or batch file.
    1>C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\pythoncore.vcxproj(532,5): warning MSB3073: The command "git name-rev --name-only HEAD > "C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\obj\310win32_Release\pythoncore\gitbranch.txt"" exited with code 9009.
    1>C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\pythoncore.vcxproj(532,5): warning MSB4181: The "Exec" task returned false but did not log an error.
    1>'git' is not recognized as an internal or external command,
    1>operable program or batch file.
    1>C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\pythoncore.vcxproj(533,5): warning MSB3073: The command "git rev-parse --short HEAD > "C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\obj\310win32_Release\pythoncore\gitversion.txt"" exited with code 9009.
    1>C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\pythoncore.vcxproj(533,5): warning MSB4181: The "Exec" task returned false but did not log an error.
    3>sha256.c
    10>Generating code
    1>'git' is not recognized as an internal or external command,
    1>operable program or batch file.
    1>C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\pythoncore.vcxproj(534,5): warning MSB3073: The command "git describe --all --always --dirty > "C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\obj\310win32_Release\pythoncore\gittag.txt"" exited with code 9009.
    1>C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\pythoncore.vcxproj(534,5): warning MSB4181: The "Exec" task returned false but did not log an error.
    1>Building :
    3>alone_decoder.c
    10>Finished generating code
    3>alone_encoder.c
    3>auto_decoder.c
    10>pywlauncher.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\pyw.exe
    3>block_buffer_decoder.c
    3>block_buffer_encoder.c
    1>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\python310.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\python310.exp
    1>Generating code
    3>block_decoder.c
    3>block_encoder.c
    3>block_header_decoder.c
    3>block_header_encoder.c
    3>block_util.c
    3>common.c
    3>easy_buffer_encoder.c
    3>Compiling...
    3>easy_decoder_memusage.c
    3>easy_encoder.c
    3>easy_encoder_memusage.c
    3>easy_preset.c
    3>filter_buffer_decoder.c
    3>filter_buffer_encoder.c
    3>filter_common.c
    3>filter_decoder.c
    3>filter_encoder.c
    3>filter_flags_decoder.c
    3>filter_flags_encoder.c
    3>hardware_cputhreads.c
    3>hardware_physmem.c
    3>index.c
    3>index_decoder.c
    3>index_encoder.c
    3>index_hash.c
    3>outqueue.c
    3>stream_buffer_decoder.c
    3>stream_buffer_encoder.c
    3>Compiling...
    3>stream_decoder.c
    3>stream_encoder.c
    3>stream_encoder_mt.c
    3>stream_flags_common.c
    3>stream_flags_decoder.c
    3>stream_flags_encoder.c
    3>vli_decoder.c
    3>vli_encoder.c
    3>vli_size.c
    3>delta_common.c
    3>delta_decoder.c
    3>delta_encoder.c
    3>fastpos_table.c
    3>lzma2_decoder.c
    3>lzma2_encoder.c
    3>lzma_decoder.c
    3>lzma_encoder.c
    3>lzma_encoder_optimum_fast.c
    3>lzma_encoder_optimum_normal.c
    3>lzma_encoder_presets.c
    3>Compiling...
    3>lz_decoder.c
    3>lz_encoder.c
    3>lz_encoder_mf.c
    3>price_table.c
    3>arm.c
    3>armthumb.c
    3>ia64.c
    3>powerpc.c
    3>simple_coder.c
    3>simple_decoder.c
    3>simple_encoder.c
    3>sparc.c
    3>x86.c
    3>liblzma.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\liblzma.lib
    4>Finished generating code
    4>sqlite3.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\sqlite3.dll
    1>Finished generating code
    1>pythoncore.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\python310.dll
    1>Done building project "pythoncore.vcxproj".
    11>------ Build started: Project: _socket, Configuration: Release Win32 ------
    12>------ Build started: Project: _ctypes, Configuration: Release Win32 ------
    13>------ Build started: Project: _elementtree, Configuration: Release Win32 ------
    14>------ Build started: Project: _msi, Configuration: Release Win32 ------
    15>------ Build started: Project: _decimal, Configuration: Release Win32 ------
    16>------ Build started: Project: _sqlite3, Configuration: Release Win32 ------
    17>------ Build started: Project: _testcapi, Configuration: Release Win32 ------
    18>------ Build started: Project: _testinternalcapi, Configuration: Release Win32 ------
    12>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_ctypes.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_ctypes.exp
    12>Generating code
    15>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_decimal.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_decimal.exp
    15>Generating code
    14>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_msi.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_msi.exp
    14>Generating code
    11>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_socket.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_socket.exp
    14>Finished generating code
    11>Generating code
    13>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_elementtree.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_elementtree.exp
    11>Finished generating code
    13>Generating code
    17>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testcapi.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testcapi.exp
    17>Generating code
    18>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testinternalcapi.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testinternalcapi.exp
    14>_msi.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_msi.pyd
    18>Generating code
    19>------ Build started: Project: _testimportmultiple, Configuration: Release Win32 ------
    16>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_sqlite3.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_sqlite3.exp
    18>Finished generating code
    16>Generating code
    12>Finished generating code
    11>_socket.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_socket.pyd
    20>------ Build started: Project: _ssl, Configuration: Release Win32 ------
    18>_testinternalcapi.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testinternalcapi.pyd
    21>------ Build started: Project: _tkinter, Configuration: Release Win32 ------
    17>Finished generating code
    19>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testimportmultiple.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testimportmultiple.exp
    19>Generating code
    19>Finished generating code
    16>Finished generating code
    12>_ctypes.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_ctypes.pyd
    22>------ Build started: Project: _bz2, Configuration: Release Win32 ------
    17>_testcapi.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testcapi.pyd
    23>------ Build started: Project: select, Configuration: Release Win32 ------
    20>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_ssl.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_ssl.exp
    21>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_tkinter.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_tkinter.exp
    20>Generating code
    21>Generating code
    19>_testimportmultiple.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testimportmultiple.pyd
    16>_sqlite3.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_sqlite3.pyd
    24>------ Build started: Project: _lzma, Configuration: Release Win32 ------
    25>------ Build started: Project: unicodedata, Configuration: Release Win32 ------
    21>Finished generating code
    22>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_bz2.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_bz2.exp
    22>Generating code
    23>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\select.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\select.exp
    23>Generating code
    23>Finished generating code
    15>Finished generating code
    20>Finished generating code
    21>_tkinter.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_tkinter.pyd
    23>select.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\select.pyd
    26>------ Build started: Project: pyexpat, Configuration: Release Win32 ------
    27>------ Build started: Project: python, Configuration: Release Win32 ------
    24>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_lzma.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_lzma.exp
    24>Generating code
    25>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\unicodedata.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\unicodedata.exp
    25>Generating code
    15>_decimal.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_decimal.pyd
    28>------ Build started: Project: _multiprocessing, Configuration: Release Win32 ------
    13>Finished generating code
    20>_ssl.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_ssl.pyd
    25>Finished generating code
    29>------ Build started: Project: pythonw, Configuration: Release Win32 ------
    26>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\pyexpat.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\pyexpat.exp
    26>Generating code
    27>Generating code
    27>Finished generating code
    13>_elementtree.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_elementtree.pyd
    30>------ Build started: Project: _testbuffer, Configuration: Release Win32 ------
    25>unicodedata.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\unicodedata.pyd
    27>python.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\python.exe
    31>------ Build started: Project: winsound, Configuration: Release Win32 ------
    29>Generating code
    29>Finished generating code
    30>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testbuffer.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testbuffer.exp
    30>Generating code
    32>------ Build started: Project: _freeze_importlib, Configuration: Release Win32 ------
    29>pythonw.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\pythonw.exe
    31>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\winsound.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\winsound.exp
    33>------ Build started: Project: _overlapped, Configuration: Release Win32 ------
    30>Finished generating code
    31>Generating code
    31>Finished generating code
    22>Finished generating code
    30>_testbuffer.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testbuffer.pyd
    32>Generating code
    34>------ Build started: Project: _testembed, Configuration: Release Win32 ------
    32>Finished generating code
    33>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_overlapped.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_overlapped.exp
    31>winsound.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\winsound.pyd
    33>Generating code
    35>------ Build started: Project: _testmultiphase, Configuration: Release Win32 ------
    32>_freeze_importlib.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_freeze_importlib.exe
    33>Finished generating code
    22>_bz2.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_bz2.pyd
    34>Generating code
    36>------ Build started: Project: _ctypes_test, Configuration: Release Win32 ------
    35>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testmultiphase.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testmultiphase.exp
    34>Finished generating code
    35>Generating code
    33>_overlapped.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_overlapped.pyd
    37>------ Build started: Project: _testconsole, Configuration: Release Win32 ------
    35>Finished generating code
    26>Finished generating code
    24>Finished generating code
    36>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_ctypes_test.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_ctypes_test.exp
    34>_testembed.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testembed.exe
    38>------ Build started: Project: _asyncio, Configuration: Release Win32 ------
    36>Generating code
    35>_testmultiphase.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_testmultiphase.pyd
    39>------ Build started: Project: _zoneinfo, Configuration: Release Win32 ------
    36>Finished generating code
    26>pyexpat.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\pyexpat.pyd
    40>------ Build started: Project: _queue, Configuration: Release Win32 ------
    24>_lzma.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_lzma.pyd
    39>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_zoneinfo.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_zoneinfo.exp
    36>_ctypes_test.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_ctypes_test.pyd
    41>------ Build started: Project: _hashlib, Configuration: Release Win32 ------
    42>------ Build started: Project: python_uwp, Configuration: Release Win32 ------
    39>Generating code
    39>Finished generating code
    43>------ Build started: Project: pythonw_uwp, Configuration: Release Win32 ------
    40>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_queue.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_queue.exp
    40>Generating code
    40>Finished generating code
    41>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_hashlib.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_hashlib.exp
    41>Generating code
    42>Generating code
    39>_zoneinfo.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_zoneinfo.pyd
    44>------ Build started: Project: _uuid, Configuration: Release Win32 ------
    41>Finished generating code
    43>Generating code
    40>_queue.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_queue.pyd
    41>_hashlib.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_hashlib.pyd
    44>   Creating library C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_uuid.lib and object C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_uuid.exp
    42>Finished generating code
    38>In file included from ..\Modules\_asynciomodule.c:1:
    44>Generating code
    44>Finished generating code
    38>In file included from C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\Include\Python.h:118:
    38>C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\Include/cpython/pytime.h(120,59): warning : declaration of 'struct timeval' will not be visible outside of this function [-Wvisibility]
    38>C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\Include/cpython/pytime.h(127,12): warning : declaration of 'struct timeval' will not be visible outside of this function [-Wvisibility]
    38>C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\Include/cpython/pytime.h(132,12): warning : declaration of 'struct timeval' will not be visible outside of this function [-Wvisibility]
    43>Finished generating code
    44>_uuid.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\_uuid.pyd
    42>python_uwp.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\python_uwp.exe
    43>pythonw_uwp.vcxproj -> C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\pythonw_uwp.exe
    38>lld-link : error : could not open '/CGTHREADS:1': no such file or directory
    38>lld-link : error : could not open '/PDBTHREADS:1': no such file or directory
    38>Done building project "_asyncio.vcxproj" -- FAILED.
    27>C:\WINDOWS\System32\ucrtbase.dll is version 10.0.19041.789
    27>Wrote C:\Users\Dibya\Desktop\Python-3.10.7\Python-3.10.7\Python-3.10.7\PCbuild\win32\LICENSE.txt
    ========== Build: 43 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

  6. I am trying to port https://github.com/python/cpython/tree/3.11

    I can  fix the dependencies but problem is certain API the binary calling doesnt exist in the source.

    SHGetKnownFolderPath:python_uwp.cpp
    GetActiveProcessorCount: Doesnt exist
    GetErrorMode:exists
    GetFileInformationByHandleEx:Doesnt exist in code.
    GetFinalPathNameByHandleW:Doesnt exist in code.
    GetTickCount64:Python/pytime.c
    InitializeProcThreadAttributeList:Modules/_winapi.c
    LCMapStringEx:Some Hint
    UpdateProcThreadAttribute:Modules/_winapi.c
    RegDeleteTreeW:Dont exist
    AcquireSRWLockExclusive:Python/condvar.h
    AcquireSRWLockShared:Dont exist
    InitOnceExecuteOnce: Dont exist
    ReleaseSRWLockExclusive:Dont Exist
    ReleaseSRWLockShared:Dont Exist

     

    Anyone can help me to figure it out?

  7. Case 1:

    Might be lots of old computers are turned on due to pandemic /plandemic.

    [its conspiracy by Bill Gates to bring back XP so he made the virus . Ancient Astronaut Theorist believe grey aliens might have taken over Gate's body and they need XP for their space ships nuclear fusion reactor ]

    Case 2:

    Government might have found out Vista and above have NSA spyware and helping CIA or something.Armenia is not particularly in good

    relation with American empire or RUssian Empire or Chinese Empire or EUSSR [Read European union]

     

     

    Sorry for all jokes

    Real reason : Immunity from exploit kit that Azerbaijan  used to attack them which they got from Israel seems to fail on XP/

  8. 8 minutes ago, DrunkenTanker said:

    As you can see. uint64_t inside bcrypt. I suppose Windows XP does not support thay so I can replace it but result is unknown.
    Really I'm bad in coding when don't understand what code does and shoud does.

    Open source developers who I know don't like comments and do not accept pull requests with comments.

    Also I don't know Golang. And How to compile that.

    That is official source code in the first message. It's Golang. I don't know Golang and how to prepare to compile.

    No idea in Go Lang either , 

  9. On 7/12/2022 at 5:39 PM, windows2 said:

    because isn't enough in the leaked 2000 source code to make a complete build of the 64 OS as it is

    mean it should be the full code of Windows 2000 to convert it to x64

     

    use XP x64 with classic theme , why bother with shady illegal leaked codes

  10. On 7/1/2022 at 2:56 AM, Mov AX, 0xDEAD said:

    1) struct _CONTEXT has  unused 1a0 bytes, it is enough to store high part of ymm0-ymm15 (low part of ymm* is xmm* and stored by kernel itself)

    struct _M128A VectorRegister[26];// Offset=0x300 Size=0x1a0

    2) struct _KERNEL_STACK_CONTROL has embeded _XMM_SAVE_AREA32 union, no enough space to store high part of ymm0-ymm15 regs

    I dont sure what struct used on x64  to store FPU context, if _XMM_SAVE_AREA32  - need to expand struct (200h->300h) and change all related size/offsets in kernel, finding these places may be very hard, see KxContextToKframes(), KiInitializeKernel(), KiInitializeContextThread(), PspGetSetContextInternal(), RtlInitializeContext(), KeSaveLegacyFloatingPointState(), ...
     

    Do you think a writing a driver possible like how Intel provided SSE driver for NT 4.0?

    https://www.betaarchive.com/forum/viewtopic.php?t=28694

×
×
  • Create New...