Questions tagged [acc]

The aCC command invokes the HP aC++ compiling system

The aCC command (the driver) invokes the HP aC++ compiling system. You must use the aCC command to link your HP aC++ programs and libraries. This ensures that all libraries and other files needed by the linker are available.

Compiler Command Syntax and Environment Variables

46 questions
1
vote
1 answer

Is aacdecoder-android royalty free to play mp3 streams?

Since the MediaPlayer class falls so short to provide decent performance to stream Internet radio, i am forced to look at all alternatives. One of these is the AACDECODER-ANDROID https://code.google.com/p/aacdecoder-android/ project. It works…
1
vote
2 answers

C++ programing error

I am new to C++ programming. So I was trying my luck executing some small programs. I am working on HP-UX which has a compiler whose executable is named aCC. I am trying to execute a small program #include using namespace std; class…
Vijay
  • 65,327
  • 90
  • 227
  • 319
1
vote
0 answers

Does HP aCC compiler support template as template parameter?

I have following code template class a { }; template < int b, template class c > class d { public: d(){ new c(); } }; int main(){ return 0; } Compiled with GCC, no error. However in HP aCC, the following error…
Chen Zhuo
  • 71
  • 5
1
vote
1 answer

Java Crash when Using Swig on HP-UX

I am using swig 2.0.7 on Hp-ux to wrap our C++ libraries. There are no errors until attempting to run when a crash occurs. Using: HP-UX bob B.11.23 U ia64 0835920252 unlimited-user license aCC: HP C/aC++ B3910B A.06.20 [May 13 2008] java version…
user823848
  • 25
  • 7
0
votes
1 answer

Protecting a jnlp download url?

I'm using Glassfish 3.1.1 and java web start to deploy a swing ACC application . The jnlp file is downloaded from this url : localhost:8080/test_application How can I protect the jnlp url with a password to securise the download ? Thanks
isoman
  • 742
  • 2
  • 9
  • 34
0
votes
1 answer

Getting the values of Default Attribute "Description" in Autodesk Construction Cloud with Forge

We are trying to get the values of Default Attribute "Description" in Autodesk Construction Cloud with Forge but we can't read it in Forge. We are getting the values of all the Default Attributes and the Custom Attributes except the attribute that…
dani
  • 1
  • 1
0
votes
0 answers

MS Access (2016); Better to hard code a network path or use the storage location of the database when deploying?

I am using MS Access 2016. I have a project which in part creates and moves folders around. I am currently using Application.CurrentPath & [form control value] & "\" (etc.) to store the created folders (and to move them when users are done). When I…
MrT 158
  • 13
  • 3
0
votes
0 answers

How to build ICU4C 70.1 on HP UX platform?

I want to build ICU4C code for HP UX platform . ICU4C repo -> https://github.com/unicode-org/icu/tree/release-70-1. HP-UX version that i am using - HP-UX B.11.31 U ia64 , aCC compiler version that i am using - HP C/aC++ B3910B A.06.29 I tried…
0
votes
1 answer

Creating a C Array from 2D NSArray

I have a 2D NSArray of string numbers that I would like to convert to a 2D C array of doubles for use with BLAS/LAPACK functions (through the accelerate framework). This line of code seems to work, however seems to be incredibly inefficient and…
taylormade201
  • 696
  • 2
  • 9
  • 25
0
votes
1 answer

Val_loss is increasing and val_accuracy is decreasing after around 30 epochs in keras

we have a few problems with our val_loss and val_acc. After a few epochs (around 30) the val_acc is going down at around 50-60% and the val_loss is increasing to between 0.98 - 1.4 (see the pictures below). At the end of the post is the end of the…
vfbler91
  • 11
  • 2
0
votes
1 answer

MS Access: query criteria in subform of a navigation form

I have set of cascading combo boxes that query a table and uses criteria this will function without an issue when it's not in a navigation subform. So I have tried to update the query to go through the navigation form and it is not…
0
votes
0 answers

How solve non Loss problem in tensorflow in regression model

I have a data base with this shape: (1400000, 44) which the 44th column is output. all numbers are float and between 0 and 1. I used a Tensorflow like below but the loss function is non and the acc is zero. # Create network with Keras import…
Iman
  • 1
0
votes
1 answer

How to split 5.1 audio into discrete AAC streams in FFmpeg 4.0

Up until FFmpeg v4.0 I have been able to run the following command on an input video file that contains an H.264 video track and either AC3 or DTS audio stream and produce an MP4 that has 6 streams of audio. Each stream corresponds to a channel of…
OwlBoy
  • 33
  • 1
  • 8
0
votes
1 answer

What can cause the application to report Undefined symbol __shlinit from a .sl library in HP-UX 11.00?

I am building a .sl library using aCC in HP-UX 11.00. I am able to build it and then link it to the application also successfully. But, when I execute the exe, it gives the below error /usr/lib/dld.sl: Unresolved Symbol: __shlinit(code) from…
Jay
  • 24,173
  • 25
  • 93
  • 141
0
votes
1 answer

Compile issue ld: Unsatisfied symbol

I am trying to compile a C++ application on HP server (HP-UX rx6600 B.11.23) using the compiler /usr/bin/cc: HP aC++/C for Itanium(R)-based systems B3910B A.05.50 [May 15 2003]. While compiling I am getting the below error: ld: Unsatisfied symbol…