SDK compile environment

Hi,
We have more than one programmer to develop, How to gather them source code and complie ?
As I know, we can setup one server(complier server) to gather all source code and complie.
My question is
1. this complier server's Env. must be a XP 32 bits? Or 64 bit(win 2003, 2008) is also ok? Because we have high level server and RAM is 16G. If we install 32 bits XP but XP cannot access memory more than 3G. It's wasting.
Thanks!

Hi Ivan,
So you mean I have to install SAP  DB (from MAXDB_WINDOWS_I386 folder) and then
execute CE711_01_IM_WIN_I386_MSS/sapinst.
Please see the file structure that I download from SAP protal. Becasue I cannot see like
CE711_01_IM_WIN_I386_SAPDB string.
BTW, for your experence, SAP DB performace is better than SQL Server ? IF not, maybe I will install SQL Server.
2008/12/09  下午 01:15    <DIR>          CE711_01_DOCU
2008/11/26  下午 03:04    <DIR>          CE711_01_IM_WIN_I386_ADA
2008/11/26  下午 03:04    <DIR>          CE711_01_IM_WIN_I386_MSS
2008/12/09  下午 01:15    <DIR>          CE711_01_JAVA_EXPORT
2008/12/09  下午 01:15    <DIR>          CE711_01_JAVA_IDE
2008/12/09  下午 01:15    <DIR>          CE711_01_JAVA_J2EE_INST
2008/12/09  下午 01:15    <DIR>          CE711_01_JAVA_J2EE_OSINDEP
2008/12/09  下午 01:16    <DIR>          CE711_01_JAVA_J2EE_OSINDEP_UT
2008/12/09  下午 01:19    <DIR>          CE711_01_JAVA_JDMP
2008/12/09  下午 01:23    <DIR>          CE711_01_JAVA_JDMP_COMP
2008/12/09  下午 01:23    <DIR>          ESE_NET_11
2008/12/08  下午 03:01    <DIR>          FWK_CE711_01_TOOLS_WIN_I386
2008/11/14  上午 10:42    <DIR>          K_CE711_UI_WINDOWS_I386
2008/10/22  下午 04:02               337 LABELIDX.ASC
2008/06/12  上午 05:59    <DIR>          MAXDB_UPDATE
2008/06/12  上午 06:00    <DIR>          MAXDB_WINDOWS_I386

Similar Messages

  • Java 2 SDK compilator for beginners

    Hi to all here.
    I am really sorry to disturb you all,
    I am beginner in Java and I need to download Java 2 SDK compilator in order to compile my homeworks. I went lost in all the reliese EE, SE and so on I saw in Sun homepage.
    Which one is the right one ?
    I have Windows Vista Home edition in my computer.
    Thanks for helping me.
    Flavio

    Download and install a Java SE 6 JDK for your Windows platform which is available here:
    http://java.sun.com/javase/downloads/index.jsp
    If you want some GUI Application you may choose the version containing NetBeans, if you only want the compiler and runtime environment install the first option (JDK 6 Update 4).
    Edited by: mezler on Feb 20, 2008 2:13 PM

  • Compiler environment variables

    Hi all,
    I'm trying to use the function implemented in
    the .
    The SDK help on that item saids that it suported only under
    winnt4.0/2000 (so it fits my case).
    BUT when I compile the module contaning this call it returns with the
    error: "Missing prototype"!!! although I encluded the and
    the as written in the SDK help.
    note: The also located in that dll warks fine!
    I've searched in the for the problematic function and foud
    the following:
    #if(_WIN32_WINNT >= 0x0400)
    WINBASEAPI
    BOOL
    WINAPI
    TryEnterCriticalSection(
    IN OUT LPCRITICAL_SECTION lpCriticalSection
    #endif /* _WIN32_WINNT >= 0x0400 */
    It seems that the compil
    er environment variables isn't set correctly
    somehow.
    [Image]
    How can I change the Compiler environment variables to match my needs?
    Thanks...

    The Options menu in the Project Window has an entry for Compiler
    Defines. Try adding this: /D_WIN32_WINNT=0x0400
    Peter

  • Adobe AIR 3.9 beta sdk&compiler with ios 7 for windows download broken

    Hi,
    I couldn't download:
    Download AIR 3.9 SDK & Compiler for Windows — with iOS7 support (ZIP, 204 MB)
    from http://labs.adobe.com/downloads/air.html
    The download gets to about 56mb or so and then cuts out. All other downloads work fine, just this one stops. I think that maybe the file was not uploaded right.
    Cheers,
    Grant

    Hi,
    The links is active and working, looks like some network issue at your end, please try again.
    -Thanks
    Pahup

  • Flex SDK compiler warnings localization

    Hi, guys.
    Wonder if i can disable localization of compiler warnings, so that sdk compiler won't take system locale (windows) and use english instead?
    Thanx in advance,
    Tim Tekaev

    use in compiler option : -locale en_US

  • Gcc3 compiling environment

    Hi, I have a problem with gcc. In my laptop I had gcc4 installed, with libstdc++ and glibc, and everything worked smoothly. I had the necessity to install gcc-3.4 to compile an old version of a data analysis program which was not ported to gcc4. I installed gcc-3.4, but got some errors. In the support forum of the program i've been told that such errors are because my libstdc++ and glibc are not matching my gcc linker version. So my question is: how to build a full gcc-3.4 compile environment? Where can I find the needed packages?
    Thanks for the help

    Yesterday I've finally been able to compile root 5.14 using gcc-3.4 (as found in the gcc34 package from repository). I had to tweak the configuration heavily. First of all, there's a small bug in the configure script which won't allow you to use the GNU Scientific Library whose subversion is a two digit number (eg., >= 1.10). This is needed to enable mathmore support; fix it like this:
    --- configure-bug 2009-01-18 20:41:56.000000000 +0100
    +++ configure 2009-01-18 16:12:48.000000000 +0100
    @@ -3503,7 +3503,7 @@
    # check for gsl version >= 1.8
    if test ! "x$found_dir" = "x"; then
    message "Checking for GSL version >= 1.8"
    - gsl_version=`grep "define GSL" $found_dir/gsl/gsl_version.h | sed 's/^.*"\([0-9]\.[0-9]\)"/\1/' | awk 'BEGIN { FS="." } { printf "%d", $1 * 1000 + $2 }'`
    + gsl_version=`grep "define GSL" $found_dir/gsl/gsl_version.h | sed 's/^.*"\([0-9]\.[0-9]*\)"/\1/' | awk 'BEGIN { FS="." } { printf "%d", $1 * 1000 + $2 }'`
    if test $gsl_version -lt 1008; then
    gslskip="skip"
    result "no
    To make sure that gcc-3.4 and g++-3.4 are used through all the build you have to set it in <root source>/config/Makefile.linux (both in the compiling and linking options). In the same file, change also the fortran complier from g77 to gfortran. If you want to use xrootd then you have to perform also this operation: unpack the <root source>/xrootd/src/xrootd-20060928-1600.src.tgz tarball before launching configure, change gcc -> gcc-3.4 and g++ -> g++-3.4 everywhere in configure, configure.ac andd config/GNUmake.rules.gcc, then pack the  tarball again and substitute the original one with the  modified one. This is because xrootd seems to have its own configuration files, and doesn't refer to Makefile.linux.
    With these tweaks, this configuration worked for me:
    ./configure linux --enable-minuit2 --enable-mathmore --disable-krb5 --disable-cintex --disable-clarens
    You should be able to enable kerberos support with MIT Kerberos (in my system there's heimdal kerberos which is not compatible with root).

  • How to revover compiling environment?

    I installed Oracle8.1.7 server on Redhat7.3
    so I had to change my compiling version to 6.2 with following files
    these rpms:
    compat-egcs-6.2-1.1.2.14.i386.rpm
    compat-glibc-6.2-2.1.3.2.i386.rpm
    compat-libs-6.2-3.i386.rpm
    How could I recover my original compiling environment?
    Thanks alot

    Hi Vikas,
    You could use Azure Management API to get the deployment configuration. For example, You could use
    'Get Deployment' to get a deployment information. And you could get the role environment form the 'DeploymentSlot' . About how to detect the Environment, I suggest you
    could refer to those post:
    http://stackoverflow.com/a/4330628
    http://stackoverflow.com/a/7111195
    And I suggest you could see this code sample from this page:
    http://convective.wordpress.com/2009/12/19/service-management-api-in-windows-azure/
    Hope this helps.
    Will 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Flex 4.1 SDK compilation error=3

    I just downloaded SDK 4.1 and tried to compile my application but I'm getting the following error:
    C:\projects\MyProject\build.xml:119:Execute failed: java.io.IOException:CreateProcess: "C:\Program Files\Adobe\Adobe Flash Builder Plug-in Beta 2\sdks\4.1\bin\mxmlc.exe" -strict=true -show-actionscript-warnings=true -keep-generated-actionscript=false -use-network=true -target-player=10.0.0 -source-path=C:\projects\MyProject-Flex/ui/trunk/src -library-path+=C:\projects\MyProject -Flex/ui/trunk/libs -output=C:\apache-tomcat-5.5.25/webapps/MyProject/Main.swf C:\projects\MyProject-Flex/ui/trunk/src/Main.mxml error=3
    Line 119 in build.xml is the starting of the following:
            <exec executable="${FLEX_HOME}/bin/mxmlc.exe">
                <arg line="-strict=true" />
                <arg line="-show-actionscript-warnings=true" />
                <arg line="-keep-generated-actionscript=false" />
                <arg line="-use-network=true" />
                <arg line="-target-player=10.0.0" />
                <arg line="-source-path=${sourceDirUI}" />
                <arg line="-library-path+=${FLEX_BASE_DIR}/ui/trunk/libs" />
                <arg line="-output=${webDirUI}/Main.swf" />
                <arg line="${sourceDirUI}/Main.mxml" />
            </exec>
    Any idea what's going on and what error=3 stands for?
    The same ant build.xml has been working with sdk 4.1.0.15735
    Thanks.

    @Jason Villmer,
    I believe the issue you're describing is http://bugs.adobe.com/jira/browse/SDK-26940.
    There is a workaround listed in the bug report which should work (based on my testing), or you could probably set the direction and layoutDirection styles globally using a Style block.
    Peter

  • How to Use SDK compile all MXML file in project ?

    Who can teach me ? Plz
    1.How to Use Adobe SDK to compile all MXML file in project ?
    2.How to Use Ant to compile all MXML file in project ?
    Thanks everyone !!

    Thank you first!
    Yes,you are right,since I am new to illustrator,and I want to try to write a plugin,
    I have read the sdk doc and API and opened the sample in vs2010,but no idea about how to operate the pdf doc in illustrator with api.
    Hope more advise or any examples,thank a lot.

  • SDK compiler to SAP Application

    Hi Friends,
                    I unable to understand life cycle of SDK(VB.net), SAP application.  Can you explain how is it working...
    Regards,
    Silambu

    Hi,
                         I sent solution for previous problem(EndInstall() returned an error,installation(propably) failed,)
    pls note that..    But I need  life cycle of SDK(VB.net compiler) to SAP Application.
    Thanks,
    silambu
    Edited by: rssimbu on Aug 2, 2011 6:42 AM

  • Help needed regarding AE SDK compiled/linked out file extension

    Hi,
       I am new to the AE SDK plug-in build, and to the Forum.
       How to select .aex file format extension for the compiler and linker single file output?
       My system is:
             Adobe CS 5
             Windows 7 with 64-bit processing
             Visual Studio 2008 SP1
       I am stuck and need help.

    I got a direct answer - it is the concept of linking to a library (.dll) and not to an executable (.exe).
    This is encouraging, thank you. 

  • RFC Windows SDK compile error

    Hello.  I downloaded the RFC SDK for Windows (RFC_23-20000056.SAR) and I am attempting to compile some example code I found out on the Web.  I am NOT a C+/C person so I am new to the build process and requirements for linking, etc..  I am using Bloodshed Dev-C+ to edit, compile and build and I am running into the following errors with 'undefined references' to RFC methods:
    ++++++++++  LOG OUTPUT  ++++++++++++++++++++++++++++++
    Compiler: Default compiler
    Building Makefile: "C:\DEV\RFC_Test_console\Makefile.win"
    Executing  make...
    make.exe -f "C:\DEV\RFC_Test_console\Makefile.win" all
    g+.exe -c main.cpp -o main.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include"  -I"C:/Dev-Cpp/include/c/3.4.2/backward"  -I"C:/Dev-Cpp/include/c/3.4.2/mingw32"  -I"C:/Dev-Cpp/include/c+/3.4.2"  -I"C:/Dev-Cpp/include"  -I"C:/DEV/RFC_Test_console/rfcsdk/include"  
    g++.exe main.o  -o "RFC_Test_console.exe" -L"C:/Dev-Cpp/lib" -L"C:/DEV/RFC_Test_console/rfcsdk/lib"  rfcsdk/bin/librfc32.dll 
    main.o(.text+0x1ad):main.cpp: undefined reference to `ItCreate@16'
    main.o(.text+0x203):main.cpp: undefined reference to `RfcOpen@4'
    main.o(.text+0x23e):main.cpp: undefined reference to `RfcCall@16'
    collect2: ld returned 1 exit status
    make.exe: *** [RFC_Test_console.exe] Error 1
    Execution terminated
    +++++++++++++  END LOG OUTPUT  +++++++++++++++++++++++++
    I have my Dev-C++ project include directory set to ..\rfcsdk\include and my project lib directory set to ..\rfcsdk\lib.
    Here is my code:
    #include <cstdlib>
    #include <iostream>
    #include <vector>
    #include "saprfc.h"
    #include "sapitab.h"
    using namespace std;
    int main(int argc, char *argv[])
        static RFC_ENV            new_env;
        static RFC_OPTIONS        rfc_opt;
        static RFC_CONNOPT_R3ONLY rfc_connopt_r3only;
        static RFC_PARAMETER      exporting[1];
        static RFC_PARAMETER      importing[1];
        static RFC_TABLE          tables[1];
        RFC_HANDLE                handle;
        RFC_RC                    rc;
        char *                    exception_ptr;
        ITAB_H                    ltab;
        char                      lst[100];
        char *                    lpt;
        int                       line, lnr, len;
        //Objects for data retrieval
        struct apr_rule
          int product_key_1;
          int product_key_2;
          double alpha_1;
          double alpha_2;
          double gamma;
          std::string operation;
       //std:: vector<apr_rule>          APR_VEC;
       rfc_opt.client   = "003";
       rfc_opt.user     = "FRESINA";
       rfc_opt.language = "EN";
       rfc_opt.password = "init21";
       rfc_opt.trace    = 0;
       rfc_opt.mode     = RFC_MODE_R3ONLY;
       rfc_opt.connopt = &rfc_connopt_r3only;
       rfc_connopt_r3only.hostname = "ld1051.wdf.sap.corp";
       rfc_connopt_r3only.sysnr = 9;
       ltab    = ItCreate( "BARMI", 100, 0, 0 );
       importing[0].name = NULL;
       exporting[0].name = NULL;
       tables[0].name = "A";
       tables[0].nlen = 1;
       tables[0].type = TYPC;
       tables[0].ithandle = ltab;
       tables[0].leng = 100;
       handle = RfcOpen( &rfc_opt );
       if( handle == RFC_HANDLE_NULL )
            return 1;
    Install error handler
        //new_env.allocate = NULL;
        //new_env.errorhandler = rfc_error;
        //RfcEnvironment (&new_env);
       rc = RfcCall (handle,
                          cU("RFC_SYSTEM_INFO"),
                          exporting,
                          tables);
        if (rc != RFC_OK)
            //rfc_error (cU("RfcCall"));
        return EXIT_SUCCESS;
    Any ideas why this won't compile?  I have also tried the sample code in the SDK (sapinfo.c) and this will not compile as it has an issue with the printfU() macro and a statement around '_MSC_VER'.
    Thanks.
    Anthony

    Hi,
    This problem usually occurs when you are installing from an ISO build for a different architecture.
    Windows SDK now have different ISO’s for different architectures. Please download the correct ISO based on your system platform and architecture type.
    Karen Hu
    TechNet Community Support

  • Forms compilation environment settings

    Hi,
    Is it possible to configure Forms Builder to use other settings (for example another NLS_LANG) that the registry one?
    In my case, I have to use NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1 for the Forms generation using Designer.
    But I want that in the Forms Builder, if I compile a module (ctrl + t), the builder uses another NLS_LANG setting so the .fmx is compiled with another NLS_SETTING that the one in the registry.
    Regards,
    Patrick
    IDS 10.1.2.2.0 on Win Xp

    Hi,
    I have special characters (prompt, item label, ...) in the fmb. If the fmx is not created using UTF8 NLS settings, those characters are not well displayed.
    I need the builder to compile using a different NLS than the registry one, if possible.
    As explain below, I can always recompile my fmb using a script but I rather prefer to have the good NLS when the builder generates the fmx
    SET NLS_LENGTH_SEMANTICS=CHAR
    SET NLS_LANG=AMERICAN_AMERICA.UTF8
    FRMCMP module=test.fmb userid.....
    Thanks

  • Metapackage or guidelines help to build general compiling environment?

    hi there,
    i am new guy to archlinux, i just got my box up and now urge to try abs. i followed the wiki to prepare the abs environment, but while i was trying to #makepkg -csi, abs complained missing make,pkg-config etc... i am too lazy to #pacman S all these basic development packages manually, i wonder if there is a meta package to set all these up(i heard of base-dev but i couldn't find it from all the repos), or may be there are guidelines explain how to get it done? please advise.
    Semson
    Last edited by semson (2007-10-31 05:06:11)

    re: Allan & Phrodo_00
    #pacman -S base-devel works!!!! i believed there was a typo mistake in my first trial... now makepkg runs happily thanks for helping.

  • Compiling AXI DMA linux drivers in SDK.

    Hi guys,
    I think I'm doing something wrong and It's making me crazy. I've got:
    Vivado 2015.2 w/ SDK.
    Zynq zc702.
    Tested in Linux 14.04 and Windows 7.
    And I want to use the axi dma drivers in a Linux application so that I downloaded the axidma_test.c example. At first most of the linux libraries threw an error until I linked somehow the libraries I found in the git repository "linux-xlnx/include".
    Then all of the "linux/*.h" libraries are recognized, but a new error appears: fatal error: asm/linkage.h not found. I tried to include this last one but I just made it worse. I cut down the code so that I only have a small snippet, having the same error:
    #include <linux/dma-mapping.h>
    int main() {
        printf("Hello World\n");
        return 0;
    I'm starting to think that I'm making it more difficult than it should be.
    Could anyone give me some advise how to successfully compile that small snippet? I would really appreciate it.
    Regards,
    Leroy
     

    Hello Leroy,
    Hmmm okay I found the one that I was thinking of:
    http://forums.xilinx.com/t5/Embedded-Linux/AXI-DMA-with-Zynq-Running-Linux/m-p/523105#M10658
    There's a presentation there with some code. About halfway down the pdf is an explanation of the software architecture for the AXI DMA linux driver and an explanation of where you need to add your application-specific layers and an example of doing so.
    As far as compiling, you really need two pieces still (bear in mind, I'm a little out of my area of expertise talking about the linux software side, so someone with more knowledge may correct the finer details. This is based on what I've gathered...):
    1) Kernel module to interface from the driver to userspace (for simplicity, you might use UIO for this like the second pdf that linnj posted in that link)
    2) Some application that runs in userspace that communicates with 1 above.
    For 1, you don't use SDK. You build a cross compile environment dependent on your kernel configuration and follow build steps:
    http://www.tldp.org/LDP/lkmpg/2.6/html/x181.html
    For 2, you'd use SDK as you are to build a Linux 'Application' (the word seems to have the connotation of running in userspace).

Maybe you are looking for