How can we debug Solaris 10 (Sparc) device drivers like we debug user processes using gdb?
By using the mdb & kmdb debuggers:
Solaris 10: Writing Device Drivers: Debugging Tools
Modular Debugger (mdb) community
Related
I have only one Windows 7 64 bit old PC. And I learning web development and I want to run VS Code code editor but when I install VS Code and double click launching icon then VSCode does not launching.
Confirmation my PC:
RAM : 4GB (DDR4)
HDD : 500 GB
CPU : Dual Core Processors
GPU:
OS : Windows 7 64bit
I am the first on this platform so please forgive me if I have made any mistakes.
Thank you.
Currently, you can install Visual Studio Code v1.70.3.
P.s. It works well in my computer.
https://code.visualstudio.com/updates/v1_70
this is last supported version for Windows7
I also still use Windows 7 Pro 64-bit. I discovered that the latest version of Code downloaded directly from Microsoft - 1.74.3 at the time I'm writing this - runs fine and all features (like debugging) appear to work IF you use the ZIP download. Every time I start it, it pops up the message "Visual Studio Code on Windows 7 will no longer receive any further updates." But when the next update comes along, I plan to just download the newest zip.
Note that all the projects I had opened in the installed version are still available in the zipped version. So, I won't be upgrading this system to Windows 10.
Hardware# Visual Studio Code is a small download (< 200 MB) and has a
disk footprint of < 500 MB. VS Code is lightweight and should easily
run on today's hardware.
We recommend:
1.6 GHz or faster processor 1 GB of RAM Platforms# VS Code is supported on the following platforms:
OS X El Capitan (10.11+) Windows 8.0, 8.1 and 10, 11 (32-bit and
64-bit) Linux (Debian): Ubuntu Desktop 16.04, Debian 9 Linux (Red
Hat): Red Hat Enterprise Linux 7, CentOS 7, Fedora 34
I want to compile a customized Apache module for OHS on Solaris 64bit SPARC machine. It is a Apache C code. But what I have is only Windows machine and Linux VMs. Can this achieved using Oracle developer studio IDE. Or is there any other way? Please help
You can use QEMU and run a SPARC virtual machine under emulation:
Status
The table below gives the status of the SPARC machines available in
QEMU and is correct as of the latest release:
Machine Status
sun4m Complete, supported
sun4u Beta, supported
sun4v Incomplete, unsupported
niagara Complete, supported
Pay particular attention to the exact architecture you need to compile for. You should be able to run Oracle Developer Studio on the emulated system. You may have to use an older SPARC architecture to generate binaries runnable on your target systems. For example, you might want to use something like -xarch=sparcv9.
Note that the emulated system will be S-L-O-W. Large compiles can take hours or even days. You should probably develop your Solaris-specific code on an x86 VM, and only do the final SPARC compile on the emulated system. Just be aware that you can get away with strict aliasing and alignment violations on x86 systems that will throw a SIGBUS on SPARC systems.
Welcome
I searched the Internet for how to debug Odoo in Eclipse for Windows,
I did not find the way only to Unix/linux server
Does anyone know the step of configurate this
thinks
How to debug Odoo in Eclipse under Windows?
here is a complete guide to Odoo development under Windows 7 (although it is very similiar under Windows 8, so you should be fine using this guide under that operating system). What will you need:
A machine with Windows 7 installed on it
Internet connection
An hour of time to prepare your environment
NOTE - This is a guide for Odoo v7 development under Windows, therefore it might, but not necessarily will work for v8 - there might be some dependencies problems.
See this link>> https://www.odoo.com/fr_FR/forum/how-to/developers-13/how-to-debug-odoo-in-eclipse-under-winows-36105
Debug Openerp/Odoo In eclipse
I just installed GitHub for Windows on my 64-bit Windows 7 computer, and the GitHub always get the following two errors complaining about two components are 16-bit applications incompatible with the 64-bit Windows OS. The two error messages are attached below.
I think there should be many users running GitHub on 64-bit Windows, so could someone please provide some workaround for this issue?
1) The first error
Unsupported 16-Bit Application
The program or feature "\??\C:\Users\mikez\AppData\Local\GitHub\PortableGit_054f2e797ebafd44a30203088cd3d58663c627ef\bin\ssh-agent.exe" cannot start or run due to incompatibity with 64-bit versions of Windows. Please contact the software vendor to ask if a 64-bit Windows compatible version is available.
2) The second error
Unsupported 16-Bit Application
The program or feature "\??\C:\Users\mikez\AppData\Local\GitHub\PortableGit_054f2e797ebafd44a30203088cd3d58663c627ef\bin\ssh-keygen.exe" cannot start or run due to incompatibity with 64-bit versions of Windows. Please contact the software vendor to ask if a 64-bit Windows compatible version is available.
Give msysgit a try. I heard that this works fine.
I'm using Eclipse CDT Indigo. I read few advices how to use cross-debugging (Eclipse is on Windows, while compilation and debugging should be done on remote Linux machine). So far I was able to compile remotely on Linux, but I still can't figure out how to actually debug on remote machine. Is it possible at all (without Eclipse maybe)?
Btw Linux is a 64 bit CentOS and as far as I could find mingw64 is the only cross compiler available for it on windows. But from my experience it is sometime a bit too quirky. Is there a way to cross debug without a need for a cross compiler?
You need a gdbserver compiled for target machine, and a gdb compiled for host machine runing the target executable. If you have these two, then you can use wingdb add-on on visual studio to connect to gdb and gdbserver to remote debug from your windows machine. I found the following links helpful:
http://www.linux.com/archive/feature/12173
http://www.wingdb.com/docs/Pages/wg_dev_elinux.htm