Questions tagged [wind-river-workbench]

Wind River Workbench is a complete suite of developer tools for software running on Wind River platforms. It's everything you need to quickly configure your operating system, analyze and tune your software, and debug an entire system.

From Wikipedia:

Wind River is a subsidiary company of Intel providing embedded system software which comprises run-time software, industry-specific software solutions, simulation technology, development tools and middleware. On June 4, 2009, Wind River announced that Intel had bought the company for a reported $884 million. Wind River continues to exist as a wholly owned subsidiary of Intel. Its product portfolio is supported by global professional services and support, and a broad partner ecosystem.

37 questions
2
votes
1 answer

__asm and PCLint 9.0L Error 14: Symbol 'TS_IntDisableAsm(void)' previously defined

I using the PCLint-Check 9.0L for a Project and got the current Error Message during a Lint-Check on all Lint-Object-Files(*.lob) of the Project: W:\DevWA\src\Platforms_h\TSPlatforms.h Error 14: Symbol 'TS_IntDisableAsm(void)' previously defined…
HoloJens
  • 67
  • 9
2
votes
2 answers

Test access to WindRiver/VxWorks license server?

I'm having trouble debugging a WindRiver build system where the build machine seems unable to obtain a license from the WindRiver license server. Is there a tool that allows me to run a "get me a license" check without having to run a complete…
Paul D Smith
  • 639
  • 5
  • 16
2
votes
1 answer

VxWorks 7 Wind River Workbench4: How do I call a function in DKM from RTP?

I have a couple of functions in my DKM Project (Kernel Space) which needs to be called from RTP (User Space). How do I do that? I have implemented custom system calls to call the kernel only APIs from RTP, but here I am not able to implement custom…
Sukum
  • 37
  • 1
  • 6
2
votes
0 answers

Facing undefined symbols linker issue with Diab compiler when I type cast array of data from float to long long

I wrote a small example code and executed in both GCC and DIAB compilers. #include int main() { float a[10]; long long int b[10]; int i; for (i =0;i<10;i++) { a[i] = 1.256*i; b[i] = (long long…
2
votes
1 answer

Wind River workbench autogenerated make file issue

In my projects folder I have plenty of svn files and directories as my projects are connected to an svn server. The workbench default make file generator tries to build all the folders inside the project folder in a recursive manner. The problem is…
kfir
  • 331
  • 4
  • 12
1
vote
2 answers

Are Simics and VxWorks Simulator the same thing?

During development with Wind River Workbench, I use VxWorks Simulator to test code. I also heard of Simics is a virtual environment which can run VxWorks. Are Simics and VxWorks Simulator the same thing?
Mahler
  • 394
  • 4
  • 14
1
vote
2 answers

Linking DKM Projects to Kernel Image(VIP) project as a Sub project/Extra Module in VxWorks Workbench4

How to Link/Load DKM projects with Kernel Image(VIP) project so that i can call the Entry point function of DKM project(application) from Kernel Image project's "usrAppInit.c" to get the application started automatically at boot time? Could some…
Sukum
  • 37
  • 1
  • 6
1
vote
1 answer

Enum with datatype in WindRiver Workbench 3.3

In Visual Studio 2010, I was able to build enumeration with datatype just fine. enum FRUIT_E : UINT16 { APPLE = 0, LEMON = 1, GRAPE = 2, }; However, when I tried to compile in WR Workbench, I get the following error: : error: use of…
Justin
  • 45
  • 1
  • 4
1
vote
0 answers

How to install yum in Wind river linux?

I want to install a few packages on wind river which again have lots of dependent packages. If I install all the dependent packages "Manually" it would be so cumbersome and tedious. To solve this problem I tried installing yum from source code, but…
jayant
  • 27
  • 3
1
vote
1 answer

Sleep() terminates thread in WindRiver

I have to write a little programm in C with WindRiver, which creates three threads: Thread #1: creates a random number Thread #2: kill #3 if the random number is smaller 25 Thread #3: kill #2 if the random number is greater 25 To kill a thread, I…
Skandix
  • 1,916
  • 6
  • 27
  • 36
1
vote
1 answer

using Diab, dcc 5.9.4 to compile a windows executable

I'm doing some experiments with an evaluation version of the WindRiver dcc diab compiler. I would like to do some testing on my Windows PC. However I think I have the wrong target setup. I've got as far as using the 'dctrl -t' command to get the…
Matt
  • 134
  • 15
0
votes
0 answers

VxWorks Simulator Error: failed for simnet0

I am a beginner in VxWorks. I use Wind River Workbench 4 and VxWorks-7 for VxWorks Development. I start the VxWorks Simulator in Wind River Workbench Terminal with prebuilt VIP project located in /samples directory. The Terminal displays the…
0
votes
0 answers

How to create a VxWorks Layer with subprojects that compile to binaries?

I have multiple RTPs under different projects within the same workspace that I would like to compile and include their binaries through the use of VxWorks binary layers. Like…
andromda
  • 35
  • 5
0
votes
1 answer

32-bit Build on 64-bit Linux

I want to build my recipe into 32bit binary on 64bit system, I have Multilib enabled : multilib configuration add in local.conf : MACHINE = "ti-am335x" require conf/multilib.conf MULTILIBS = "multilib:lib32" DEFAULTTUNE_virtclass-multilib-lib32 =…
0
votes
1 answer

Compile VxWorks using clang -cc1 option fail when adding -g debug flag

I'm trying to compile VxWorks 7 SR660 on Wind River Workbench using clang version 10.0.1.1. When compiling without debugging (-g flag) the compilation succeeds, when adding -g flag I get an error "error: unknown argument: '-g'". The flags I use…
Eig
  • 31
  • 2
1
2 3